mac下安裝autojump

最近安裝了iTerm,被小夥伴推薦了一個插件autojump,感受真是又好看又好用啊!默認的主題已經很好用了!在此分享給你們~javascript

看圖解釋:java

 

一行命令就能夠直接搜索曾經打開過的文件夾,Project是文件夾的名字,如此清楚,簡直不能更美好~git

1,安裝zsh,執行
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" 
2,將zsh設置爲默認的shell:
chsh -s /bin/zsh (重啓shell)
3,查看當前默認是哪一個shell(bash or zsh)
echo $SHELL 
4,安裝autojump(確保有brew)
brew install autojump
5,安裝了zsh以後會默認有一個文件.zshrc,能夠打開終端而且ls -a查看,使用vim .zshrc打開.zshrc
6,點擊i編輯文件
(1).在文件中搜索「plugins=」,
  • 若是有修改成:plugins=(git autojump);
  • 若是沒有就在文件第一行寫plugins=(git autojump);
(2).而後在新的一行添加寫:
[[ -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

(4).保存更改後的配置文件,而且:wq保存退出。
7,而後執行    source .zshrc ,autojump就能夠直接使用啦~
8.具體使用方法有兩種:
(1)添加一條快捷鍵設置:
code . 會直接打開vsCode

簡寫 gs, gc
(2)直接輸入 j project

也會自動定位到曾經去過的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

相關文章
相關標籤/搜索