效果如下(擁有語(yǔ)法高亮支鸡,命令行tab補(bǔ)全料仗,自動(dòng)提示符鸭巴,顯示Git倉(cāng)庫(kù)狀態(tài)等功能。)
安裝
brew cask install iterm2
- 先安裝homebrew cask
- 或者官網(wǎng)下載
-
chsh -s /bin/zsh
——切換mac shell為zsh,如果想還原chsh -s /bin/bash
- zsh和bash一樣巡通,是一種Unix shell尘执,但大多數(shù)Linux發(fā)行版都默認(rèn)使用bash shell。但zsh有強(qiáng)大的自動(dòng)補(bǔ)全參數(shù)和自定義配置功能等等宴凉,oh-my-zsh正卧,可以讓我們非常快速的上手zsh跪解÷酰或者使用命令行安裝(推薦)
curl -L https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh | sh
- 配置顏色主題solarized
3.1cp ~/.zshrc ~/.zshrc.orig
備份現(xiàn)有的~/.zshrc文件
3.2cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
創(chuàng)建一個(gè)新的zsh配置文件
3.3 在~/.zshrc文件中修改ZSH_THEME="agnoster"
3.4 添加powerline字體
git clone https://github.com/powerline/fonts.git
下載
cd fonts
./install.sh
安裝
cd ../
rm fonts
刪除安裝包
Preferences->Profiles->Text->change font->選擇XXX for Powerline(看個(gè)人喜好)
3.5 修改顏色主題 選擇Solarized Dark (3.1.5版自帶)
3.5 修改快速顯示/隱藏快捷鍵Preferences->Keys->Hotkey->勾選Show/hide all windows a system-wide hotkey 并且添加快捷鍵 - 安裝插件,
brew install zsh completions
代碼補(bǔ)全叉讥,zsh-syntax-highlighting
代碼高亮窘行。設(shè)置~/.zshrc文件中添加(默認(rèn)只有g(shù)it)
source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
plugins=(
git
zsh-completions
zsh-syntax-highlighting
)