nvim-config/lua/plugins/treesitter.lua

15 lines
457 B
Lua

return {
{
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
lazy = false,
config = function()
require("nvim-treesitter.config").setup({
ensure_installed = { "c", "cpp", "python", "rust", "bash", "lua", "vim", "vimdoc" },
auto_install = true,
highlight = { enable = true },
indent = { enable = true },
})
end,
},
}