1.安装iTerm2
2.安装oh-my-zsh
1 | sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" |
- 使用该指令能自动切换bash为zsh
- 将oh-my-zsh的主题切换为ys
brew install autojump
,在.zshrc中添加plugins中的autojump,并添加[[ -s ~/.autojump/etc/profile.d/autojump.sh ]] && . ~/.autojump/etc/profile. d/autojump.sh
3.安装dircolors-solarized
- 安装之后能够使得终端中使用ls指令具有彩色的输出
brew install coreutils
git clone git://github.com/seebi/dircolors-solarized.git
,将clone文件夹中的dircolors.ansi-dark复制到~/.dir_colors- 在.zshrc中添加如下内容
1 | if brew list | grep coreutils > /dev/null ; then |
4.修改vim主题
git clone git://github.com/altercation/solarized.git
mkdir -p ~/.vim/colors
cp solarized/vim-colors-solarized/colors/solarized.vim ~/.vim/colors
vim ~/.vimrc
,添加如下内容
1 | syntax enable |