zsh
创建日期:2015-07-18 11:58:05 修改日期:2016-08-24 16:24:46

启用 z 插件可达到同样效果
修改配置文件 ~/.zshrc 有一行 plugins=(git) 改为 plugins=(git z)

MacOS 安装配置

配置 autojump 时注意事项

brew install autojump

编辑 .zshrc 文件,最后添加一下内容,注意路径问题

[[ -s $(brew --prefix)/etc/profile.d/autojump.sh ]] && . $(brew --prefix)/etc/profile.d/autojump.sh

重启 shell

配置 Sublime text 打开文件

编辑 .zshrc 文件

alias sublime='/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl'
alias -s php=sublime

CentOS 7 安装配置

查看系统 shell

cat /etc/shells

安装 zsh

sudo yum install zsh

设置当前用户使用 zsh

chsh -s /bin/zsh

安装 git

sudo yum install git

自动安装 oh my zsh

wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh

安装 autojump

git clone git://github.com/joelthelion/autojump.git
cd autojump
./install.py or ./uninstall.py

启用 EPEL 仓库

sudo yum install epel-release

参考资料

终极 Shell——ZSH

autojump一键直达目录

autojump github

How to set up EPEL repository on CentOS