nvim/lua/plugins/nvim-treesitter.lua

17 lines
276 B
Lua
Raw Normal View History

2024-02-21 04:09:18 +00:00
return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
2024-02-23 08:38:41 +00:00
opts = {
ensure_installed = {
"nix",
"lua",
"vim",
},
2024-02-21 04:09:18 +00:00
2024-02-23 08:38:41 +00:00
sync_install = true,
auto_install = true,
highlight = { enable = true },
indent = { enable = true },
},
2024-02-21 04:09:18 +00:00
}