12 lines
322 B
Lua
12 lines
322 B
Lua
return {
|
|
"nvim-treesitter/nvim-treesitter",
|
|
run = ":TSUpdate",
|
|
config = function()
|
|
require("nvim-treesitter.configs").setup({
|
|
ensure_installed = { "lua", "c", "cpp", "rust" },
|
|
highlight = { enable = true, additional_vim_regex_highlighting = false },
|
|
indent = { enable = true },
|
|
})
|
|
end,
|
|
}
|