mirror of
https://github.com/pnx/dotfiles
synced 2026-08-15 16:38:13 +02:00
22 lines
349 B
Lua
22 lines
349 B
Lua
local M = {}
|
|
|
|
M.treesitter = function (...)
|
|
return {
|
|
"romus204/tree-sitter-manager.nvim",
|
|
opts = {
|
|
ensure_installed = {...},
|
|
}
|
|
}
|
|
end
|
|
|
|
M.treesitter_alias = function (value)
|
|
return {
|
|
"romus204/tree-sitter-manager.nvim",
|
|
opts = {
|
|
alias = value,
|
|
}
|
|
}
|
|
end
|
|
|
|
return M
|
|
|