Cleanup a bunch of scripts and add an installer script

This commit is contained in:
Tony Blyler 2019-12-06 16:31:10 -05:00
parent add685765d
commit 52b0cb0d84
14 changed files with 382 additions and 99 deletions

View file

@ -10,6 +10,13 @@ function GoPostUpdate()
:GoUpdateBinaries
endfunction
" automatically install vim-plug if it doesn't exist
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
call plug#begin($HOME.'/.nvim/plugged')
if s:uname == "Linux"