dotfiles/nvim/lua/plugins/treesitter.lua
2024-03-02 17:25:11 +01:00

15 lines
430 B
Lua

return {
{
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function ()
local configs = require("nvim-treesitter.configs")
configs.setup({
ensure_installed = { "c", "rust", "lua", "vim", "vimdoc", "markdown" , "javascript", "typescript", "python", "html", "astro", "tsx" },
sync_install = false,
highlight = { enable = true },
indent = { enable = true },
})
end
}
}