[vim] Add treesitter plugin

Add after config script
This commit is contained in:
Eryn Wells 2023-08-25 08:00:45 -07:00
parent eb270c30bf
commit 556d125741
2 changed files with 12 additions and 0 deletions

View file

@ -0,0 +1,11 @@
local treesitter_configs = require 'nvim-treesitter.configs'
treesitter_configs.setup {
ensure_installed = { "lua", "vim", "javascript", "swift" },
sync_install = true,
auto_install = true,
hightlight = {
enable = true,
additional_vim_regex_highlighting = false,
},
}