13 lines
268 B
Lua
13 lines
268 B
Lua
local GitHubPresence = {}
|
|
|
|
GitHubPresence.setup = {}
|
|
|
|
function GitHubPresence:setup(options)
|
|
self.options = options or {}
|
|
vim.schedule(
|
|
function() vim.cmd(string.format([[echom "[%s] %s"]], "github-presence", "initialized")) end
|
|
)
|
|
end
|
|
|
|
return GitHubPresence
|