blob: 24e6c32d77cee2d4cea001938f1e3a09ef7b42a0 (
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
}
|