iTerm2html
iTerm一個爲Mac OS X編寫的,功能齊全的終端仿真程序;目標是在爲用戶提供OS X下最佳的命令行體驗,iTerm 2有不少可以提高效率的實用功能。好比說窗口分割、熱鍵窗口、智能搜索、自動完成、快速複製等等,其餘功能可查看官網的Features頁。git
Term2的安裝與配置github
brew cask install iTerm2
安裝(推薦)配置環境變量
vim
Oh My Zsh的安裝bash
Oh My Zsh是對主題的進一步擴展,地址:https://github.com/robbyrussell/oh-my-zshcurl
$ sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
$ chsh -s /bin/zsh
ZSH_THEME="agnoster"
更改用戶名url
若是是item2 + oh-my-zsh +
agnoster主題組合,cd到 ~/.oh-my-zsh/themes/
而後 vim agnoster.zsh-theme
,找到以下代碼spa
# Context: user@hostname (who am I and where am I) prompt_context() { if [[ "$USER" != "$DEFAULT_USER" || -n "$SSH_CLIENT" ]]; then # 修改以下代碼,標灰色的地方能夠自定義 # prompt_segment black default "%(!.%{%F{yellow}%}.)$USER@%m" prompt_segment black default "%(!.%{%F{yellow}%}.)$USER@Mac" fi }
iTerm2 快捷命令命令行
命令 | 說明 |
---|---|
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 + l | 清屏 |
ctrl + a | 到行首 |
ctrl + e | 到行尾 |
ctrl + f/b | 前進後退 |
ctrl + p | 上一條命令 |
ctrl + r | 搜索命令歷史 |