iTerm2 + Oh My Zsh 打造溫馨終端體驗

寫在前面

最終效果圖:html

ImageInitIterm

本文嚴重抄襲自:https://www.jianshu.com/p/7de...git

因排版和原文中的一些bug,參照搜索引擎和原文有了本篇文章。github

由於powerline以及homebrew均須要安裝command line tool,網絡條件優越的同窗在執行本文下面內容以前,能夠先安裝XCode並打開運行一次(會初始化安裝components),省去之後在iterm2中的等待時間。shell

另外,git也是必要的,各位能夠自行下載安裝,除了網絡沒有任何坑:xcode

https://git-scm.combash

介於此,本文默認各位同窗已經安裝了git環境和xcode(command line tools),遇到提示找不到git命令或須要安裝command line tool的地方,文中再也不贅述了。網絡

下載iTerm2

能夠直接去官網下載:https://www.iterm2.com/curl

安裝完成後,在/bin目錄下會多出一個zsh的文件。字體

Mac系統默認使用dash做爲終端,可使用命令修改默認使用zsh:搜索引擎

chsh -s /bin/zsh

若是想修改回默認dash,一樣使用chsh命令便可:

chsh -s /bin/bash

OK,這就是iTerm2初始的樣子,下面咱們來美化它,讓它變得更好用!

ImageInitIterm

安裝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 -)"

安裝命令和安裝完成後的截圖:

ImageInitIterm

oh-my-zsh開源地址:https://github.com/robbyrusse...

安裝PowerLine

powerline官網:http://powerline.readthedocs....

安裝powerline的方式依然簡單,也只須要一條命令:

pip install powerline-status --user

沒有安裝pip的同窗可能會碰到zsh: command not found: pip。

ImageInitIterm

使用命令安裝pip便可:

sudo easy_install pip

安裝後再次執行安裝powerline的命令便可。

ImageInitIterm

安裝PowerFonts

安裝字體庫須要首先將項目git clone至本地,而後執行源碼中的install.sh。

在你習慣的位置新建一個文件夾,如:~/Desktop/OpenSource/

ImageInitIterm

在此文件夾下執行git clone命令:

# git clone
git clone https://github.com/powerline/fonts.git --depth=1
# cd to folder
cd fonts
# run install shell
./install.sh

執行結果以下:

ImageInitIterm

安裝好字體庫以後,咱們來設置iTerm2的字體,具體的操做是iTerm2 -> Preferences -> Profiles -> Text,在Font區域選中Change Font,而後找到Meslo LG字體。有L、M、S可選,看我的喜愛:

ImageInitIterm

安裝配色方案

配色方案在使用VIM或Colorful Log時會變得很是有用,同時界面也不會一片黑綠同樣死板。

一樣使用git clone的方式下載源碼進行安裝:

cd ~/Desktop/OpenSource
git clone https://github.com/altercation/solarized
cd solarized/iterm2-colors-solarized/
open .

在打開的finder窗口中,雙擊Solarized Dark.itermcolors和Solarized Light.itermcolors便可安裝明暗兩種配色:

ImageInitIterm

再次進入iTerm2 -> Preferences -> Profiles -> Colors -> Color Presets中根據我的喜愛選擇這兩種配色中的一種便可:

ImageInitIterm

安裝主題

下載agnoster主題,執行腳本安裝:

cd ~/Desktop/OpenSource
git clone https://github.com/fcamblor/oh-my-zsh-agnoster-fcamblor.git
cd oh-my-zsh-agnoster-fcamblor/
./install

執行上面的命令會將主題拷貝到oh my zsh的themes中:

ImageInitIterm

拷貝完成後,執行命令打開zshrc配置文件,將ZSH_THEME後面的字段改成agnoster。

vi ~/.zshrc

ImageInitIterm

修改完成後按一下esc調出vi命令,輸入:wq保存並退出vi模式。

此時command+Q或source配置文件後,iTerm2變了模樣:

ImageInitIterm

安裝高亮插件

這是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,咱們須要把高亮插件也加上:

ImageInitIterm

請務必保證插件順序,zsh-syntax-highlighting必須在最後一個。

而後在文件的最後一行添加:source ~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh

按一下esc調出vi命令,輸入:wq保存並退出vi模式。

執行命令使剛纔的修改生效:

source ~/.zshrc

至此大功告成,請看最終效果圖:

ImageInitIterm

背景圖片取自微軟Surface Studio的4K壁紙(將近12MB大小),很是漂亮,須要的能夠自取:

連接: https://pan.baidu.com/s/17zGm...
提取碼: hg67

更換背景圖片方式:iTerm2 -> Preferences -> Profiles -> Window -> BackGround Image勾選圖片便可。

可選擇、命令補全

跟代碼高亮的安裝方式同樣,這也是一個zsh的插件,叫作zsh-autosuggestion,用於命令建議和補全。

cd ~/.oh-my-zsh/custom/plugins/
git clone https://github.com/zsh-users/zsh-autosuggestions
vi ~/.zshrc

找到plugins,加上這個插件便可:

ImageInitIterm

插件效果:

ImageInitIterm

Github:https://github.com/sirius1024...

喜歡請Star哦

相關文章
相關標籤/搜索