11 lines
217 B
Lua
11 lines
217 B
Lua
|
local M = {}
|
||
|
|
||
|
function M.set_status(activity)
|
||
|
if activity == nil then return end
|
||
|
local _ = vim.fn.systemlist(
|
||
|
string.format("github-status --message 'Currently editting: %s'", activity.file)
|
||
|
)
|
||
|
end
|
||
|
|
||
|
return M
|