Last active
May 20, 2019 22:34
-
-
Save amadeus/a38abbb97438ed7650e57515d9dd6fe4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Base .vimrc file | |
if has('vim_starting') | |
set nocompatible | |
endif | |
" Ensure all directories are setup properly and download plug.vim | |
if empty(glob('~/.vim/autoload/plug.vim')) | |
execute '!mkdir -p ~/.vim/bundle ~/.vim/backup ~/.vim/swap ~/.vim/cache ~/.vim/undo ~/.vim/autoload ~/.vim/bundle' | |
execute '!curl -fLo ~/.vim/autoload/plug.vim https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim' | |
endif | |
call plug#begin('~/.vim/bundle') | |
" Plugins go here, Example: | |
" Plug 'pangloss/vim-javascript' | |
" Actual url for the plugin is https://github.com/pangloss/vim-javascript | |
call plug#end() | |
" Your normal .vimrc configuration should go here | |
set wildmenu |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment