dotfiles/nvim/lua/plugins/treesitter.lua
Felix Buehler 73f06db5d7
Some checks failed
Build / Lint Code Base (push) Has been cancelled
CI / build (push) Has been cancelled
nvim: enable treesitter only when cli installed
2026-01-19 20:24:31 +01:00

11 lines
224 B
Lua

return {
'nvim-treesitter/nvim-treesitter',
lazy = false,
build = ':TSUpdate',
cond = function()
return vim.fn.executable 'tree-sitter' == 1
end,
config = function()
require("config.treesitter")
end,
}