mirror of
https://github.com/Stunkymonkey/dotfiles.git
synced 2026-01-29 01:13:01 +01:00
11 lines
224 B
Lua
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,
|
|
}
|