nvim: Refactor lualine configuration
Configure in its lazy loading file to not have an extra file flying around.
This commit is contained in:
parent
0d017f7747
commit
116cbe79be
2 changed files with 29 additions and 32 deletions
|
@ -1,28 +0,0 @@
|
||||||
require("lualine").setup({
|
|
||||||
options = {
|
|
||||||
icons_enabled = true,
|
|
||||||
theme = "auto",
|
|
||||||
component_separators = { left = "", right = "" },
|
|
||||||
section_separators = { left = "", right = "" },
|
|
||||||
disabled_filetypes = {},
|
|
||||||
always_divide_middle = true,
|
|
||||||
},
|
|
||||||
sections = {
|
|
||||||
lualine_a = { "mode" },
|
|
||||||
lualine_b = { "branch", "diff", "diagnostics" },
|
|
||||||
lualine_c = { "filename" },
|
|
||||||
lualine_x = { "encoding", "fileformat", "filetype" },
|
|
||||||
lualine_y = { "progress", "location" },
|
|
||||||
lualine_z = { "hostname" },
|
|
||||||
},
|
|
||||||
inactive_sections = {
|
|
||||||
lualine_a = {},
|
|
||||||
lualine_b = { "branch", "diff" },
|
|
||||||
lualine_c = { "filename" },
|
|
||||||
lualine_x = {},
|
|
||||||
lualine_y = { "location" },
|
|
||||||
lualine_z = {},
|
|
||||||
},
|
|
||||||
tabline = {},
|
|
||||||
extensions = { "quickfix", "toggleterm" },
|
|
||||||
})
|
|
|
@ -3,10 +3,35 @@ return {
|
||||||
{
|
{
|
||||||
"nvim-lualine/lualine.nvim",
|
"nvim-lualine/lualine.nvim",
|
||||||
requires = { "nvim-tree/nvim-web-devicons", config = true },
|
requires = { "nvim-tree/nvim-web-devicons", config = true },
|
||||||
config = function()
|
opts = {
|
||||||
require("plugins.config.lualine")
|
options = {
|
||||||
end,
|
icons_enabled = true,
|
||||||
event = "VeryLazy",
|
theme = "auto",
|
||||||
|
component_separators = { left = "", right = "" },
|
||||||
|
section_separators = { left = "", right = "" },
|
||||||
|
disabled_filetypes = {},
|
||||||
|
always_divide_middle = true,
|
||||||
|
},
|
||||||
|
sections = {
|
||||||
|
lualine_a = { "mode" },
|
||||||
|
lualine_b = { "branch", "diff", "diagnostics" },
|
||||||
|
lualine_c = { "filename" },
|
||||||
|
lualine_x = { "encoding", "fileformat", "filetype" },
|
||||||
|
lualine_y = { "progress", "location" },
|
||||||
|
lualine_z = { "hostname" },
|
||||||
|
},
|
||||||
|
inactive_sections = {
|
||||||
|
lualine_a = {},
|
||||||
|
lualine_b = { "branch", "diff" },
|
||||||
|
lualine_c = { "filename" },
|
||||||
|
lualine_x = {},
|
||||||
|
lualine_y = { "location" },
|
||||||
|
lualine_z = {},
|
||||||
|
},
|
||||||
|
tabline = {},
|
||||||
|
extensions = { "quickfix", "toggleterm" },
|
||||||
|
},
|
||||||
|
event = { "BufNewFile", "BufAdd", "BufWinEnter" },
|
||||||
},
|
},
|
||||||
-- create pretty unobtrusive notifications
|
-- create pretty unobtrusive notifications
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue