mirror of
https://github.com/jiriks74/presence.nvim
synced 2024-11-23 20:37:50 +01:00
16 lines
441 B
VimL
16 lines
441 B
VimL
|
" Define autocommands to handle auto-update events
|
||
|
augroup presence_events
|
||
|
autocmd!
|
||
|
if g:presence_auto_update
|
||
|
autocmd BufRead * lua package.loaded.presence:update()
|
||
|
endif
|
||
|
augroup END
|
||
|
|
||
|
" Fallback to setting up the plugin automatically
|
||
|
if !exists("g:presence_has_setup")
|
||
|
lua << EOF
|
||
|
local Presence = require("presence"):setup()
|
||
|
Presence.log:debug("Custom setup not detected, plugin set up using defaults")
|
||
|
EOF
|
||
|
endif
|