Files
nvim/lua/plugins/lualine.lua
2025-05-11 12:55:50 +08:00

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" } },
-- },
},
},
}