1
0
Fork 0
mirror of https://github.com/jiriks74/presence.nvim synced 2024-12-29 03:12:04 +01:00
presence.nvim/autoload/presence.vim
2021-01-03 11:29:19 -08:00

9 lines
307 B
VimL

" Define autocommands to handle auto-update events
function presence#SetAutoCmds()
augroup presence_events
autocmd!
if exists("g:presence_auto_update") && g:presence_auto_update
autocmd BufRead * lua package.loaded.presence:update()
endif
augroup END
endfunction