Files
nvim/lua/plugins/completion/treesitter.lua
voidarclabs 495738e490 adding neorg
2026-02-12 17:29:00 +00:00

14 lines
330 B
Lua

return {
"nvim-treesitter/nvim-treesitter",
-- Important: On NixOS, we don't want lazy to build it
build = false,
lazy = false,
config = function()
require("nvim-treesitter").setup({
-- Disable auto_install so it doesn't try to use 'git' or 'curl'
auto_install = false,
highlight = { enable = true },
})
end,
}