feat(nvim): configure lualine

This commit is contained in:
Oliver Davies 2023-07-22 09:22:46 +01:00
parent 76c3503b34
commit 511f7fe21e

View file

@ -3,4 +3,18 @@ if not status_ok then
return
end
lualine.setup {}
lualine.setup {
options = {
component_separators = { left = "", right = "" },
extensions = { "fzf", "quickfix" },
icons_enabled = false,
section_separators = { left = "", right = "" },
theme = "catppuccin",
},
sections = {
lualine_c = {
"filename",
"lsp_progress",
},
},
}