diff options
Diffstat (limited to 'vim/.vimrc')
-rw-r--r-- | vim/.vimrc | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,10 @@ +"" Download vim-plug if necessary +if empty(glob('~/.vim/autoload/plug.vim')) + silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs + \ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim + autocmd VimEnter * PlugInstall --sync | source $MYVIMRC +endif + let mapleader = " " let maplocalleader = "\\" |