1
0

FIX: Restructured nvim plugins. moved the configuration for each plugin through Lazy in seperate files.

This commit is contained in:
2024-03-26 12:51:53 +01:00
parent a1ef89b3c9
commit b844031323
13 changed files with 185 additions and 189 deletions

View File

@@ -0,0 +1,14 @@
return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
local configs = require("nvim-treesitter.configs")
configs.setup({
ensure_installed = { "c", "lua", "vim", "vimdoc", "bash" },
sync_install = false,
highlight = { enable = true },
indent = { enable = true },
})
end
}