github-presence/lua/github_presence/timer.lua
2022-10-14 21:52:49 +02:00

17 lines
385 B
Lua

local github = require "github_presence.github"
local updates = require "github_presence.updates"
return {
start_cron = function()
local timer = vim.loop.new_timer()
timer:start(
1000,
1000 * 60,
vim.schedule_wrap(function()
if updates.last_activity == nil then return end
github.set_status(updates.last_activity)
end)
)
end,
}