dotfiles/.config/nvim/tsousa/plugins/treesitter.lua
2023-10-11 18:13:14 +01:00

15 lines
438 B
Lua

return {
"nvim-treesitter/nvim-treesitter",
run = "TSUpdate",
config = function()
endrequire 'nvim-treesitter.configs'.setup {
ensure_installed = { "lua", "vim", "python", "rust", "haskell", "c", "java", "bash", "go" },
sync_install = false,
highlight = {
enable = true,
additional_vim_regex_highlighting = false,
},
}
end
}