nvim/lua/plugins/tresitter.lua

18 lines
426 B
Lua
Raw Normal View History

2024-10-11 15:48:25 +00:00
return {
{
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function ()
local configs = require("nvim-treesitter.configs")
configs.setup({
ensure_installed = {"php", "lua", "vim", "vimdoc", "javascript", "html"},
sync_install = false,
highlight = { enable = true },
indent = { enable = true},
})
end
}
}