Commit nvim configuration

This commit is contained in:
2024-08-07 00:36:20 -05:00
parent daffcc3915
commit ed7a46b460
28 changed files with 395 additions and 0 deletions

View File

@ -0,0 +1,22 @@
return {
"nvim-treesitter/nvim-treesitter",
opts = {
build = ":TSUpdate",
ensure_installed = {
"ruby",
"lua",
"hcl",
"terraform",
},
auto_install = true,
highlight = {
enable = true,
},
indent = {
enable = false,
},
},
config = function(_, opts)
require("nvim-treesitter.configs").setup(opts)
end,
}