iTerm2是MAC下最好用的終端工具,而且仍是免費的。iTerm2 是配置完畢開箱即用的 tmux,有標籤變色、智能選中等特點功能。在平常開發中,咱們不免會與終端命令打交道,好比使用Git,CocoaPods,Homebrew,Hexo等,下面開始介紹自定義終端樣式吧!python
- 下載安裝iTerm 2
- 安裝powerline
- 安裝oh-my-zsh
- 安裝字體庫fonts
- 導入配色
- 主題設置
- 添加指令高亮效果zsh-syntax-highlighting
- 快捷鍵
- 問題解決
//沒有安裝pip先安裝pip
sudo easy_install pip
//以後安裝powerline(這裏可能會報錯,能夠參考問題解決)
pip install powerline-status
複製代碼
curl -L https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh
複製代碼
//克隆字體庫到本地
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
複製代碼
git clone https://github.com/altercation/solarized
複製代碼
//克隆主題到本地
git clone https://github.com/fcamblor/oh-my-zsh-agnoster-fcamblor
//安裝主題
cd oh-my-zsh-agnoster-fcamblor
./install
複製代碼
# 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"
複製代碼
//克隆項目到本地
git clone git://github.com/zsh-users/zsh-syntax-highlighting.git
複製代碼
source /Users/WENBO/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
plugins=(zsh-syntax-highlighting)
複製代碼
注意github
/Users/WENBO是*.zshrc文件所在路徑,這裏替換成你本身的就行了
複製代碼
本身也才安裝,先記錄下來吧。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 |
sudo mkdir /usr/local/Frameworks
sudo chown $(whoami):admin /usr/local/Frameworks
複製代碼
以後執行,連接成功dom
brew link python
複製代碼
brew install python
複製代碼
pip install powerline-status --user -U
複製代碼
在掘金上發現了這款終端工具,本身平時也有用到終端工具,因而就嘗試給本身的MAC裝上這款軟件,在安裝過程當中仍是遇到一些問題,不過最後都解決了。若是你也愛好終端命令操做,能夠嘗試DIY你喜歡的終端樣式哦。curl