blob: 20063418628e8a80b2af33149bc026729d1f943d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
local configs = require("nvim-treesitter.configs")
configs.setup({
ensure_installed = {"lua", "c", "javascript"},
highlight = { enable = true },
indent = { enable = true }
})
end
}
|