Nvim config initial

This commit is contained in:
Pablu23
2024-05-18 15:12:46 +02:00
commit cd8c24bb2e
14 changed files with 214 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
local config = require("nvim-treesitter.configs")
config.setup({
ensure_installed = {"lua", "go"},
highlight = {enable = true},
indent = {enable = true},
})
end
}