Files
dotfiles/dot-config/nvim/lua/plugins/treesitter.lua

18 lines
375 B
Lua
Raw Normal View History

2024-10-29 09:15:26 -05:00
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,
}