diff --git a/lua/kickstart/util.lua b/lua/kickstart/util.lua new file mode 100644 index 00000000..fffacd52 --- /dev/null +++ b/lua/kickstart/util.lua @@ -0,0 +1,11 @@ +-- Shared utilities for kickstart plugin files +local M = {} + +--- GitHub URL shorthand: gh('user/repo') -> 'https://github.com/user/repo' +---@param repo string +---@return string +function M.gh(repo) + return 'https://github.com/' .. repo +end + +return M