blob: e7b181d98606f7a613ec8082021b517ea9aef5e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
local config = require("nvim-treesitter.configs")
config.setup({
ensure_installed = { "lua", "javascript", "yaml", "python", "terraform" },
sync_install = false,
highlight = { enable = true },
indent = { enable = true },
})
end
}
|