zerolab 2019-06-30
安装Fish Shell
brew install fish
curl -L https://get.oh-my.fish | fish
安装Fisher
curl https://git.io/fisher --create-dirs -sLo ~/.config/fish/functions/fisher.fish
配置 autojump
clone autojump
git clone https://github.com/wting/autojump.git
安装 autojump 至本地 ~/.autojump
目录:
cd autojump ./install.py
begin set --local AUTOJUMP_PATH $HOME/.autojump/share/autojump/autojump.fish if test -e $AUTOJUMP_PATH source $AUTOJUMP_PATH end end
退出fish,重新开始。使用cd命令访问常用目录。你现在可以使用j命令跳转到这些目录:
exit j testDir
跳转到当前目录的子目录:
jc chid_dir
autojump
历史记录中的条目统计信息:j -s
使用finder
打开目录
jo dir
配置nvm
使用fish之后,之前配置的nvm
就不能用了,需要在~/.config/fish/config
当中添加nvm的配 置
begin set --local AUTOJUMP_PATH $HOME/.autojump/share/autojump/autojump.fish if test -e $AUTOJUMP_PATH source $AUTOJUMP_PATH end function nvm bass source ~/.nvm/nvm.sh --no-use ';' nvm $argv end end
默认shell
切换至fish
echo /usr/local/bin/fish | sudo tee -a /etc/shells chsh -s /usr/local/bin/fish