From d04144089dbfaff29cd4e318f542ce977db9d87d Mon Sep 17 00:00:00 2001 From: Danielle McLean Date: Thu, 3 Sep 2020 14:01:05 +1000 Subject: [PATCH] Update minpac integration to match current recommendations (status is automatically handled on update now) --- config/vim/init.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/vim/init.vim b/config/vim/init.vim index 33faf67..d7a9d74 100644 --- a/config/vim/init.vim +++ b/config/vim/init.vim @@ -10,7 +10,7 @@ endfunction if exists('+packpath') " These are really clever - minpac will actually be loaded on the fly only " when you need to update or clean your packages, rather than all the time. - command! PackUpdate source $XDG_CONFIG_HOME/vim/plugins.vim | call minpac#update('', {'do': 'call minpac#status()'}) + command! PackUpdate source $XDG_CONFIG_HOME/vim/plugins.vim | call minpac#update() command! PackClean source $XDG_CONFIG_HOME/vim/plugins.vim | call minpac#clean() command! PackStatus source $XDG_CONFIG_HOME/vim/plugins.vim | call minpac#status()