mirror of
https://github.com/DefectingCat/nvim
synced 2025-07-15 16:51:33 +00:00
27 lines
680 B
Lua
27 lines
680 B
Lua
return {
|
|
"nvim-lualine/lualine.nvim",
|
|
opts = {
|
|
options = {
|
|
-- theme = "catppuccin",
|
|
-- theme = "lackluster",
|
|
-- theme = "rei",
|
|
component_separators = { left = "", right = "" },
|
|
section_separators = { left = "", right = "" },
|
|
},
|
|
extensions = { "quickfix", "trouble", "mason", "lazy", "nvim-tree" },
|
|
sections = {
|
|
lualine_x = {
|
|
{ "encoding" },
|
|
{ "fileformat" },
|
|
{ "filetype" },
|
|
},
|
|
-- lualine_y = {
|
|
-- { "progress", color = { bg = "#de9aa3", fg = "#000000" } },
|
|
-- },
|
|
-- lualine_z = {
|
|
-- { "location", color = { bg = "#eac8c7" } },
|
|
-- },
|
|
},
|
|
},
|
|
}
|