VoidVim/lua/config/plugins/treesitter.lua

12 lines
237 B
Lua
Raw Permalink Normal View History

require 'nvim-treesitter.configs'.setup {
2024-12-12 13:07:56 +03:00
ensure_installed = { 'rust', 'c', 'lua', 'tsx', 'javascript', 'typescript' },
sync_install = false,
auto_install = true,
highlight = {
enable = true,
},
autotag = {
enable = true,
2024-12-12 13:07:56 +03:00
}
}