14 lines
404 B
Lua
14 lines
404 B
Lua
return {
|
|
"nvim-treesitter/nvim-treesitter",
|
|
build = ":TSUpdate",
|
|
config = function ()
|
|
local configs = require("nvim-treesitter.configs")
|
|
|
|
configs.setup({
|
|
ensure_installed = { "c", "lua", "vim", "vimdoc", "query", "elixir", "heex", "javascript", "html", "php", "css" },
|
|
sync_install = false,
|
|
highlight = { enable = false },
|
|
indent = { enable = true },
|
|
})
|
|
end
|
|
}
|