Last active
July 28, 2016 00:40
-
-
Save alice1017/4ae7940dcb1d07573738 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
#!/bin/sh | |
#coding: utf-8 | |
GET="wget --no-check-certificate" | |
# move homedir | |
cd ~ | |
# clone | |
mkdir .vim | |
git clone http://github.com/gmarik/vundle.git ~/.vim/bundle/vundle | |
# download vimrc | |
$GET -O ~/.vim/vimrc "https://gist.githubusercontent.com/alice1017/c66e2e07cb8cee95091b/raw/335f6b4c28ac2c6a3c10405b9b53f923c6c64d94/vimrc" | |
ln -s ~/.vim/vimrc ~/.vimrc | |
# colorschemee | |
mkdir .vim/colors | |
$GET -O ~/.vim/colors/getafe.vim "https://raw.githubusercontent.com/alice1017/vim-getafe/master/colors/getafe.vim" | |
$GET -O ~/.vim/colors/solarized.vim "https://raw.githubusercontent.com/altercation/vim-colors-solarized/master/colors/solarized.vim" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment