add lua only version

This commit is contained in:
Patrick Nisble
2026-01-19 08:34:25 +01:00
parent 14e757dd77
commit 82afdef873
3 changed files with 327 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
local mrpy = require("mrpy")
vim.api.nvim_create_user_command("MrPy", mrpy.select_task, {})
mrpy.session = {
auth = os.getenv("CLICKUP_AUTH") or "",
user = os.getenv("CLICKUP_USER_ID") or "",
workspace = os.getenv("CLICKUP_WORKSPACE_ID") or "",
base_url = "https://api.clickup.com/api/v2",
}