with status update
This commit is contained in:
13
lua/github_presence/timer.lua
Normal file
13
lua/github_presence/timer.lua
Normal file
@@ -0,0 +1,13 @@
|
||||
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() github.set_status(updates.last_activity) end)
|
||||
)
|
||||
end,
|
||||
}
|
Reference in New Issue
Block a user