安裝Fish Shellhtml
brew install fish
安裝Oh My Fishgit
curl -L https://get.oh-my.fish | fish
安裝Fishergithub
curl https://git.io/fisher --create-dirs -sLo ~/.config/fish/functions/fisher.fish
配置 autojumpshell
clone autojump
curl
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命令跳轉到這些目錄:url
exit j testDir
跳轉到當前目錄的子目錄:code
jc chid_dir
autojump
歷史記錄中的條目統計信息:j -s
使用finder
打開目錄htm
jo dir
配置nvm
blog
使用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
switch to fish
Fish shell 入門教程 使用版本:Autojump 22.5.1, Fish 3.0.0和Mac 10.14.2