blob: 69b452a006201956c7491aec68016cc1f1c916ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function ()
local ts = require("nvim-treesitter.configs")
ts.setup({
ensure_installed = { "c", "lua", "vim", "vimdoc", "html", "css", "javascript" },
sync_install = false,
highlight = { enable = true },
indent = { enable = true },
})
end
}
|