nVim/lua/plugins/spec/treesitter.lua
Robert Morrison 8d30935771 fix(treesitter): Make Treesitter install on start
Recent changes to treesitter have made it so that it cannot
automatically install the languages you want. As such I have cobbled
together this script to make it work right for me.
2025-12-21 20:40:41 +00:00

16 lines
243 B
Lua

return {
{
"nvim-treesitter/nvim-treesitter",
lazy = false,
branch = "main",
build = ":TSUpdate",
setup = true,
},
{
"nvim-treesitter/nvim-treesitter-context",
dependencies = {
"nvim-treesitter/nvim-treesitter",
},
},
}