Files
nvim/lua/plugins/treesitter.lua
2025-12-14 20:45:53 -05:00

17 lines
498 B
Lua

-- Treesitter plugin.
return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
-- Initialise treesitter and set it up and stuff.
-- Go to `https://github.com/nvim-treesitter/nvim-treesitter` to find languages.
local config = require("nvim-treesitter.configs")
config.setup({
auto_install = true,
highlight = { enable = true },
indent = { enable = true },
})
end
}