diff --git a/plugin/commands.vim b/plugin/commands.vim index 43ca3ba..7198969 100644 --- a/plugin/commands.vim +++ b/plugin/commands.vim @@ -1,3 +1,9 @@ +" minpac +command! PackUpdate packadd minpac | source $MYVIMRC | + \ call minpac#update('', {'do': 'call minpac#status()'}) +command! PackStatus packadd minpac | source $MYVIMRC | call minpac#status() +command! PackClean packadd minpac | source $MYVIMRC | call minpac#clean() + " Sort Python Imports command! ISort call do#isort() diff --git a/plugin/mappings.vim b/plugin/mappings.vim index db3ddc7..7c189de 100644 --- a/plugin/mappings.vim +++ b/plugin/mappings.vim @@ -1,9 +1,3 @@ -" minpac -command! PackUpdate packadd minpac | source $MYVIMRC | - \ call minpac#update('', {'do': 'call minpac#status()'}) -command! PackStatus packadd minpac | source $MYVIMRC | call minpac#status() -command! PackClean packadd minpac | source $MYVIMRC | call minpac#clean() - " YouCompleteMe nnoremap fi :YcmCompleter FixIt nnoremap gd :YcmCompleter GoTo