20 lines
379 B
Lua
20 lines
379 B
Lua
vim.pack.add({
|
|
{
|
|
src = "https://github.com/nvim-treesitter/nvim-treesitter",
|
|
branch = "main",
|
|
build = ":TSUpdate",
|
|
lazy = false,
|
|
},
|
|
})
|
|
|
|
require("nvim-treesitter.configs").setup({
|
|
ensure_installed = {},
|
|
modules = {},
|
|
sync_install = false,
|
|
auto_install = true,
|
|
ignore_install = {},
|
|
highlight = {
|
|
enable = true,
|
|
additional_vim_regex_highlighting = false,
|
|
},
|
|
})
|