aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2023-01-09 13:01:54 -0600
committerToby Vincent <tobyv13@gmail.com>2023-01-09 13:01:54 -0600
commite0e4e5e1d76a3afcaeb23e19b15861e3f0514ce4 (patch)
treedf93d6106544cfb22d9bb7af930b2ddc77ad2ba9
parent1a5d9c8798169e41ab9a10986a45cbc899ff7cc3 (diff)
fix(nvim): set proper events to load presence
-rw-r--r--nvim/.config/nvim/lua/tobyvin/plugins/presence.lua10
1 files changed, 9 insertions, 1 deletions
diff --git a/nvim/.config/nvim/lua/tobyvin/plugins/presence.lua b/nvim/.config/nvim/lua/tobyvin/plugins/presence.lua
index d54dd91..58aa468 100644
--- a/nvim/.config/nvim/lua/tobyvin/plugins/presence.lua
+++ b/nvim/.config/nvim/lua/tobyvin/plugins/presence.lua
@@ -1,6 +1,14 @@
local M = {
"andweeb/presence.nvim",
- event = "VeryLazy",
+ event = {
+ "FocusGained",
+ "TextChanged",
+ "VimLeavePre",
+ "WinEnter",
+ "WinLeave",
+ "BufEnter",
+ "BufAdd",
+ },
}
function M.config()