MAC上iTerm 2安裝與使用

logo2x.jpg

更新日誌

1、前言

iTerm2是MAC下最好用的終端工具,而且仍是免費的。iTerm2 是配置完畢開箱即用的 tmux,有標籤變色、智能選中等特點功能。在平常開發中,咱們不免會與終端命令打交道,好比使用Git,CocoaPods,Homebrew,Hexo等,下面開始介紹自定義終端樣式吧!python

2、目錄

3、下載安裝iTerm 2

4、安裝powerline

//沒有安裝pip先安裝pip
sudo easy_install pip

//以後安裝powerline(這裏可能會報錯,能夠參考問題解決)
pip install powerline-status
複製代碼

5、安裝oh-my-zsh

curl -L https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh
複製代碼

6、安裝字體庫fonts

//克隆字體庫到本地
git clone https://github.com/powerline/fonts.git

//安裝字體
cd fonts
./install.sh
複製代碼

安裝成功以後輸出:git

➜  fonts git:(master) ./install.sh
Copying fonts...
Powerline fonts installed to /Users/WENBO/Library/Fonts
複製代碼

7、導入配色

git clone https://github.com/altercation/solarized
複製代碼
  • 解壓zip文件,進入solarized/iterm2-colors-solarized 文件,雙擊Solarized Dark.itermcolorsSolarized Light.itermcolors進行安裝導入,以下圖所示
    install-solarized.png
  • 進入系統偏好設置,profiles->Colors選擇剛剛導入的配色方案便可
    屏幕快照 2018-02-12 下午4.07.41.png

8、主題設置

//克隆主題到本地
git clone  https://github.com/fcamblor/oh-my-zsh-agnoster-fcamblor

//安裝主題
cd oh-my-zsh-agnoster-fcamblor
./install
複製代碼
  • 安裝成功以後,編輯**~/.zshrc文件,將ZSH_THEME改成agnoster**
# Set name of the theme to load. Optionally, if you set this to "random"
# it'll load a random theme each time that oh-my-zsh is loaded.
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
ZSH_THEME="agnoster"
複製代碼

9、添加指令高亮效果zsh-syntax-highlighting

  • 下載文件
//克隆項目到本地
git clone git://github.com/zsh-users/zsh-syntax-highlighting.git
複製代碼
  • 編輯**.zshrc**文件,在最後添加以下內容
source /Users/WENBO/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
plugins=(zsh-syntax-highlighting)
複製代碼

注意github

/Users/WENBO是*.zshrc文件所在路徑,這裏替換成你本身的就行了
複製代碼
  • 設置成功以後,效果以下:
    屏幕快照 2018-02-12 下午4.55.25.png

10、快捷鍵

本身也才安裝,先記錄下來吧。bash

說明 快捷鍵
新建標籤 command + t
關閉標籤 command + w
切換標籤 command + 數字 command + 左右方向鍵
切換全屏 command + enter
查找 command +f
垂直分屏 command + d
水平分屏 command + shift + d
切換屏幕 command + option + 方向鍵 command + [ 或 command + ]
查看歷史命令 command + ;
查看剪貼板歷史 command + shift + h
清除當前行 ctrl + u
到行首 ctrl + a
到行尾 ctrl + e
前進後退 ctrl + f/b (至關於左右方向鍵)
上一條命令 ctrl + p
搜索命令歷史 ctrl + r
刪除當前光標的字符 ctrl + d
刪除光標以前的字符 ctrl + h
刪除光標以前的單詞 ctrl + w
刪除到文本末尾 ctrl + k
交換光標處文本 ctrl + t
清屏1 command + r
清屏2 ctrl + l

11、問題解決

sudo mkdir /usr/local/Frameworks
sudo chown $(whoami):admin /usr/local/Frameworks
複製代碼

以後執行,連接成功dom

brew link python
複製代碼
  • 安裝powerline報錯Permission denied,緣由是沒有安裝python,,經過homebrew安裝python
brew install python
複製代碼
  • 命令顯示?號,以下圖所示:
    屏幕快照 2018-02-12 下午4.38.27.png
    解決辦法:進入Preference->Profiles->Text,作以下配置便可:
    屏幕快照 2018-02-12 下午4.59.18.png
  • Mac安裝powerline 權限問題,報錯以下
    屏幕快照 2018-05-20 下午3.57.18.png
    解決辦法:
pip install powerline-status --user -U
複製代碼

12、結語

在掘金上發現了這款終端工具,本身平時也有用到終端工具,因而就嘗試給本身的MAC裝上這款軟件,在安裝過程當中仍是遇到一些問題,不過最後都解決了。若是你也愛好終端命令操做,能夠嘗試DIY你喜歡的終端樣式哦。curl

參考文章

相關文章
相關標籤/搜索