nvim: the epic config restructure

This commit is contained in:
2023-07-08 15:20:43 +03:00
parent 43a54ad044
commit 9a81f16153
31 changed files with 384 additions and 495 deletions

View File

@ -1,8 +1,12 @@
-- lualine colorscheme
require("lualine").setup({
options = {
theme = "auto",
section_separators = { "", "" },
component_separators = { "", "" },
},
})
return {
"hoob3rt/lualine.nvim",
config = function()
require("lualine").setup({
options = {
theme = "auto",
section_separators = { "", "" },
component_separators = { "", "" },
},
})
end,
}