9 lines
261 B
Lua
9 lines
261 B
Lua
return { "nvim-treesitter/nvim-treesitter",
|
|
build = ":TSUpdate",
|
|
config = function()
|
|
require("nvim-treesitter.configs").setup {
|
|
ensure_installed = { 'c', 'cpp', 'lua' },
|
|
highlight = { enable = true, }
|
|
}
|
|
end
|
|
}
|