This commit is contained in:
Christoph J. Scherr 2024-03-22 11:17:00 +01:00
parent 44bb3db121
commit 35dd2cb5a4
Signed by: cscherrNT
GPG Key ID: 8E2B45BC51A27EA7
1 changed files with 19 additions and 0 deletions

View File

@ -935,6 +935,25 @@ local plugins = {
]] ]]
end, end,
}, },
{
"NvChad/ui",
enabled = true,
branch = "v2.0",
lazy = false,
},
{
"nvim-lualine/lualine.nvim",
lazy = false,
dependencies = {
"nvim-tree/nvim-web-devicons",
"NvChad/ui", -- load after nvchad ui
},
config = function()
-- TODO: add lsp module for lualine
-- Maybe we can steal modules from the nvchad ui
require("lualine").setup()
end,
},
} }
return plugins return plugins