Skip to content

Instantly share code, notes, and snippets.

@skalpin
Last active July 23, 2018 15:55
Show Gist options
  • Save skalpin/84d28920d99cecbaf6d0f44202d20f7c to your computer and use it in GitHub Desktop.
Save skalpin/84d28920d99cecbaf6d0f44202d20f7c to your computer and use it in GitHub Desktop.
cd $env:USERPROFILE
Invoke-WebRequest -Uri https://gist.githubusercontent.com/skalpin/220fbefa89943fae697bf7c438ea7033/raw/a110bb4c98f25978b9e34694158e49b669216fdd/_vimrc -OutFile _vimrc;
Invoke-WebRequest -Uri https://gist.githubusercontent.com/skalpin/5b880ac8121fc60a84404597ab360c19/raw/5b4824b4bccccdf2946babca885a1be1f7203fd0/.gitconfig -OutFile .gitconfig;
git clone https://github.com/tpope/vim-pathogen.git vimfiles;
cd vimfiles;
mkdir bundle;
cd bundle;
# Get vim bundles
git clone https://github.com/scrooloose/nerdcommenter.git;
git clone https://github.com/scrooloose/nerdtree.git;
git clone https://github.com/vim-airline/vim-airline;
git clone https://github.com/vim-airline/vim-airline-themes;
git clone git://github.com/altercation/vim-colors-solarized.git;
git clone git://github.com/tpope/vim-fugitive.git;
git clone git://github.com/airblade/vim-gitgutter.git;
git clone https://github.com/sickill/vim-monokai.git;
git clone https://github.com/PProvost/vim-ps1.git
cd ../../
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment