with status update

This commit is contained in:
2022-10-13 22:19:21 +02:00
parent 90fac0d1ef
commit 635eac655b
8 changed files with 105 additions and 13 deletions

View File

@@ -0,0 +1,17 @@
local M = {}
---@param message string
function M.info(message)
vim.schedule(
function() vim.notify(string.format("[%s]: %s", "github-presence", message), "info") end
)
end
---@param message string
function M.debug(message)
vim.schedule(
function() vim.notify(string.format("[%s]: %s", "github-presence", message), "debug") end
)
end
return M