21 lines
633 B
Lua
21 lines
633 B
Lua
return {
|
|
"nvim-lualine/lualine.nvim",
|
|
config = function()
|
|
require('lualine').setup({
|
|
options = {
|
|
theme = "auto",
|
|
globalstatus = true,
|
|
},
|
|
sections = {
|
|
lualine_a = { "mode" },
|
|
lualine_b = { "branch", "diff" },
|
|
lualine_c = { "diagnostics", { "filename", path = 1 } },
|
|
lualine_x = { "encoding", "fileformat", "filetype" },
|
|
lualine_y = { "progress" },
|
|
lualine_z = { "location" },
|
|
},
|
|
extensions = { "neo-tree" },
|
|
})
|
|
end,
|
|
}
|