adding neorg

This commit is contained in:
voidarclabs
2026-02-12 17:29:00 +00:00
parent 3833828409
commit 495738e490
3 changed files with 37 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
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,
}