feat(nvim): configure lualine
This commit is contained in:
parent
739349fb2d
commit
06408d7336
15
after/plugin/lualine.lua
Normal file
15
after/plugin/lualine.lua
Normal file
|
@ -0,0 +1,15 @@
|
|||
require("lualine").setup {
|
||||
options = {
|
||||
component_separators = { left = "", right = "" },
|
||||
extensions = { "fzf", "quickfix" },
|
||||
icons_enabled = false,
|
||||
section_separators = { left = "", right = "" },
|
||||
theme = "catppuccin",
|
||||
},
|
||||
|
||||
sections = {
|
||||
lualine_c = {
|
||||
"lsp_progress",
|
||||
},
|
||||
},
|
||||
}
|
Reference in a new issue