Created
June 1, 2016 05:15
-
-
Save jumbo-in-Jap/594f99dc1445fae61aeb8e678943d263 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| #set -e | |
| set -x | |
| # neobundle | |
| mkdir -p ~/.vim/bundle | |
| git clone https://github.com/Shougo/neobundle.vim ~/.vim/bundle/neobundle.vim | |
| git clone https://github.com/Shougo/vimproc ~/.vim/bundle/vimproc | |
| ln -s ~/dotfiles/vim/.vimrc ~/.vimrc | |
| mkdir ~/.vim/colors | |
| ln -s ~/dotfiles/vim/molokai.vim ~/.vim/colors/molokai.vim | |
| mkdir -p ~/.vim/dictionary | |
| php dict.php | sort > ~/.vim/dictionary/php.dict | |
| source ~/.vimrc | |
| # link | |
| ln -s ~/dotfiles/zsh/.zshrc ~/.zshrc | |
| ln -s ~/dotfiles/tmux/.tmux.conf ~/.tmux.conf | |
| # zsh | |
| zsh --version | |
| if [ $? -gt 0 ]; then | |
| sudo yum -y install zsh | |
| sudo chsh | |
| fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment