only load vimplug if it exists, ignore otherwise
This commit is contained in:
parent
003b053fe7
commit
e75653b4ef
1 changed files with 2 additions and 1 deletions
|
@ -23,7 +23,7 @@ endif
|
||||||
|
|
||||||
" defines plugin directory
|
" defines plugin directory
|
||||||
" Install plugins from vim with :PlugInstall
|
" Install plugins from vim with :PlugInstall
|
||||||
call plug#begin('~/.local/share/nvim/plugged')
|
silent! if plug#begin('~/.local/share/nvim/plugged')
|
||||||
|
|
||||||
" Base
|
" Base
|
||||||
Plug 'tpope/vim-sensible'
|
Plug 'tpope/vim-sensible'
|
||||||
|
@ -60,6 +60,7 @@ Plug 'edkolev/tmuxline.vim'
|
||||||
Plug 'Nequo/vim-allomancer'
|
Plug 'Nequo/vim-allomancer'
|
||||||
|
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
endif
|
||||||
|
|
||||||
" }}}
|
" }}}
|
||||||
" ================================================================================
|
" ================================================================================
|
||||||
|
|
Loading…
Reference in a new issue