NVIM with Lazy.vim Package Manager

- Added the basic setting for functional LSP.
- Split configurations into multiple files suitable for Lazy usage.
This commit is contained in:
Pratik Tripathy
2023-12-24 23:39:58 +05:30
parent cbe069367b
commit 14bca30695
13 changed files with 228 additions and 17 deletions

View File

@@ -0,0 +1,10 @@
return {
"nvim-lualine/lualine.nvim",
config = function()
require("lualine").setup({
options = {
theme = "powerline_dark"
}
})
end
}