- 安装zsh:sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
- 将zsh设置成默认的shell:chsh -s /bin/zsh (重启shell)
- echo $SHELL可以查看用的哪个shell(bash or zsh)
- 安装autojump:brew install autojump(确保有brew)
- 使用vim .zshrc打开.zshrc(有些人会找不到.zshrc这个文件,其实安装了zsh才会有.zshrc ,在默认打开的终端目录下。可以打开终端并且ls -a查看)。
- 找到 plugins=,在后面添加autojump:plugins=(git autojump)
- 新开一行,添加:[[ -s $(brew --prefix)/etc/profile.d/autojump.sh ]] && . $(brew --prefix)/etc/profile.d/autojump.sh
- :wq保存退出
- 重启终端,autojump就可以使用了,例如:
添加一条快捷键:j -a s '/Users/XXX/Desktop/code/shark’(j -a 你定义的快捷命令 ‘需要跳转的目录位置’)
进入shark:j s
来源:oschina
链接:https://my.oschina.net/u/255575/blog/804679