官網下載:https://www.iterm2.com/html
安裝完成後,在/bin目錄下會多出一個zsh的文件。python
Mac系統默認使用dash做爲終端,可使用命令修改默認使用zsh:git
chsh -s /bin/zsh
zsh完美代替bash,具體區別可查看:《Zsh和Bash區別》github
iterm2的原始界面shell
打開路徑:iterm2 -> Preferences -> Profiles -> window -> Background Imagevim
選擇一張本身喜歡的壁紙便可bash
能夠經過Blending調節壁紙的透明度: 透明度爲0的時候,背景變爲純色(黑色)curl
我我的比較喜歡扁平化的壁紙,喜歡的朋友能夠來這裏看看:
《有哪些優雅的 Windows 10 壁紙?》字體
zsh的功能極其強大,只是配置過於複雜,經過Oh my zsh
能夠很快配置zsh。url
這裏只作簡單的配置,如須要深刻了解,能夠查看:《oh-my-zsh,讓你的終端從未這麼爽過》
安裝方法有兩種,可使用curl或wget,看本身環境或喜愛:
# curl 安裝方式 sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
# wget 安裝方式 sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
oh-my-zsh開源地址:《oh-my-zsh》
首先先安裝pip命令:
sudo easy_install pip
pip是python的一個維護命令
安裝powerline:
pip install powerline-status --user
在經常使用的位置新建一個文件夾,如:~/Desktop/OpenSource/
在OpenSource文件夾下下載PorweFonts:
# git clone git clone https://github.com/powerline/fonts.git --depth=1 # cd to folder cd fonts # run install shell ./install.sh
執行結果以下:
安裝好字體庫以後,咱們來設置iTerm2的字體,具體的操做是:
iTerm2 -> Preferences -> Profiles -> Text
在Font區域選中Change Font,而後找到Meslo LG字體。
在OpenSource目錄下執行git clone
命令:
git clone https://github.com/altercation/solarized cd solarized/iterm2-colors-solarized/ open .
在打開的finder窗口中,雙擊Solarized Dark.itermcolors和Solarized Light.itermcolors便可安裝明暗兩種配色:
再次進入iTerm2 -> Preferences -> Profiles -> Colors -> Color Presets中根據我的喜愛選擇.
在OpenSource目錄下執行git clone
命令:
git clone https://github.com/fcamblor/oh-my-zsh-agnoster-fcamblor.git cd oh-my-zsh-agnoster-fcamblor/ ./install
執行上面的命令會將主題拷貝到oh my zsh的themes.
執行命令打開zshrc配置文件,將ZSH_THEME後面的字段改成agnoster
vi ~/.zshrc
我這裏簡單說一下vim的一些操做命令,不熟悉的能夠看看:
鍵盤i: 進入可編輯模式,最下面顯示-- INSERT --
鍵盤esc: 退出編輯模式
shift + : : 執行命令操做
輸入wq: 保存當前更改。若是僅僅退出不保存,能夠輸入q
此時command+Q或source配置文件後,iTerm2變了模樣:
https://raw.githubusercontent.com/sirius1024/pubimgs/master/blogs/iterm2/12.png
這是oh my zsh的一個插件,安裝方式與theme大同小異:
cd ~/.oh-my-zsh/custom/plugins/ git clone https://github.com/zsh-users/zsh-syntax-highlighting.git vi ~/.zshrc
這時咱們再次打開zshrc文件進行編輯。找到plugins,此時plugins中應該已經有了git,咱們須要把高亮插件也加上:
https://raw.githubusercontent.com/sirius1024/pubimgs/master/blogs/iterm2/13.png
請務必保證插件順序,zsh-syntax-highlighting必須在最後一個。
而後在文件的最後一行添加:
source ~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
按一下esc調出vi命令,輸入:wq保存並退出vi模式。
執行命令使剛纔的修改生效:
source ~/.zshrc
全部配置至此結束。下面提供另外的功能
跟代碼高亮的安裝方式同樣,這也是一個zsh的插件,叫作zsh-autosuggestion,用於命令建議和補全。
cd ~/.oh-my-zsh/custom/plugins/ git clone https://github.com/zsh-users/zsh-autosuggestions vi ~/.zshrc
找到plugins,加上這個插件便可:
https://raw.githubusercontent.com/sirius1024/pubimgs/master/blogs/iterm2/15.png
插件效果:
https://raw.githubusercontent.com/sirius1024/pubimgs/master/blogs/iterm2/16.png
有同窗說補全命令的字體不太清晰,與背景顏色太過相近,其實能夠本身調整一下字體顏色。
Preferences -> Profiles -> Colors
中有Foreground是標準字體顏色,ANSI Colors中Bright的第一個是補全的字體顏色。