1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-08-15 16:38:13 +02:00
dotfiles/nvim/lua/user/utils/lang_spec.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