refactor one 'term' to rule them all

This commit is contained in:
Mathias Schneider
2026-03-26 14:29:16 +01:00
parent 6adaa7b4e5
commit ef9b2fd0f0
15 changed files with 0 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
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" },
lualine_x = { "encoding", "fileformat", "filetype" },
lualine_y = { "progress" },
lualine_z = { "location" },
},
extensions = { "neo-tree" },
})
end,
}