17 lines
360 B
Lua
17 lines
360 B
Lua
pcall(function()
|
|
dofile(vim.g.base46_cache .. "syntax")
|
|
dofile(vim.g.base46_cache .. "treesitter")
|
|
end)
|
|
|
|
require('nvim-treesitter.configs').setup {
|
|
build = ":TSUpdate",
|
|
ensure_installed = "all",
|
|
sync_install = false,
|
|
auto_install = true,
|
|
highlight = {
|
|
enable = true,
|
|
additional_vim_regex_highlighting = false,
|
|
},
|
|
}
|
|
|