feat(neovim): Add nvim config files

This commit is contained in:
2024-10-29 09:15:26 -05:00
parent a7c36de720
commit 0d8daff023
10 changed files with 157 additions and 0 deletions

View File

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