最近安裝了iTerm,被小夥伴推薦了一個插件autojump,感受真是又好看又好用啊!默認的主題已經很好用了!在此分享給你們~javascript
看圖解釋:java
一行命令就能夠直接搜索曾經打開過的文件夾,Project是文件夾的名字,如此清楚,簡直不能更美好~git
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
chsh -s /bin/zsh (重啓shell)
echo $SHELL
brew install autojump
[[ -s $(brew --prefix)/etc/profile.d/autojump.sh ]] && . $(brew --prefix)/etc/profile.d/autojump.sh
(3).而後在新的一行添加寫:
alias code="'/Applications/Visual Studio Code.app/Contents/Resources/app/bin/code'"github
alias gs="git status "shell
alias gc="git add . && git commit -am "vim
code . 會直接打開vsCode
簡寫 gs, gc
也會自動定位到曾經去過的project目錄文件夾下,此時的目錄必定不能寫錯!bash
(3)打開當前路徑下的文件的快捷鍵 ‘o’app
前提請配置一下curl
alias o="ofd"ui
plugins=(git osx)
//plugins=(git osx autojump)//[[ -s $(brew --prefix)/etc/profile.d/autojump.sh ]] && . $(brew --prefix)/etc/profile.d/autojump.sh