dotfiles/nvim/lua/plugins/treesitter.lua

12 lines
224 B
Lua
Raw Permalink Normal View History

2026-01-18 16:03:14 +01:00
return {
'nvim-treesitter/nvim-treesitter',
lazy = false,
build = ':TSUpdate',
cond = function()
return vim.fn.executable 'tree-sitter' == 1
end,
2026-01-18 16:03:14 +01:00
config = function()
require("config.treesitter")
end,
}