Adds nvim config as home manager module

This commit is contained in:
Dennis Schoepf 2025-01-24 21:49:07 +01:00
parent 5a9ad9bbd1
commit 98f4a6679e
34 changed files with 1260 additions and 0 deletions

View file

@ -0,0 +1,19 @@
return {
"nvim-lualine/lualine.nvim",
opts = {
options = {
icons_enabled = false,
-- globalstatus = true
component_separators = { left = "|", right = "|" },
section_separators = { left = "", right = "" },
},
sections = {
lualine_a = { "mode" },
lualine_b = {},
lualine_c = { "branch", "diff", "diagnostics" },
lualine_x = { "filetype", "encoding" },
lualine_y = {},
lualine_z = { "location" },
},
},
}