10 lines
181 B
VimL
10 lines
181 B
VimL
function! StartUp()
|
|
call darkmodesocket#listenForLights()
|
|
call UpdatePlugReminder()
|
|
endfunc
|
|
|
|
augroup startUp
|
|
autocmd!
|
|
|
|
autocmd VimEnter * call StartUp()
|
|
augroup END
|