From 90fac0d1efb933378522f701a0d8c4dfbebef4cb Mon Sep 17 00:00:00 2001 From: kjuulh Date: Thu, 13 Oct 2022 20:54:52 +0200 Subject: [PATCH] with notify --- lua/github-presence/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/github-presence/init.lua b/lua/github-presence/init.lua index d67dded..c9e68a9 100644 --- a/lua/github-presence/init.lua +++ b/lua/github-presence/init.lua @@ -6,7 +6,7 @@ function GitHubPresence:setup(options) options = options or {} self.options = options vim.schedule( - function() vim.cmd(string.format([[echom "[%s] %s"]], "github-presence", "initialized")) end + function() vim.notify(string.format([[echom "[%s] %s"]], "github-presence", "initialized")) end ) end