15 lines
438 B
Lua
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
|
|
}
|