本文意圖是給終端小白提供一個效(fang)率(bian)更(zhuang)高(bi)的終端使用方式。html
oh-my-zsh
oh-my-zsh
是什麼?oh-my-zsh
是一款社區驅動的命令行工具,正如它的主頁上說的,oh-my-zsh
是一種生活方式。它基於zsh
命令行,提供了主題配置,插件機制,已經內置的便捷操做。給咱們一種全新的方式使用命令行。 oh-my-zsh
這個名字聽起來就頗有意思,它是基於zsh
命令行的一個擴展工具集,提供了豐富的擴展功能。 oh-my-zsh
只是一個對zsh
命令行環境的配置包裝框架,但它不提供命令行窗口,更不是一個獨立的APP。 詳細介紹能夠看它的主頁oh-my-zsh。git
oh-my-zsh
怎麼安裝?// Via curl
$ sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
// Via wget
$ sh -c "$(wget https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
複製代碼
oh-my-zsh
個性化配置oh-my-zsh
更增強大。官方插件1、官方插件2,我這邊經常使用的有一下幾個: (1) zsh-syntax-highlighting
- 命令高亮 (2) z
- 快速跳轉以前已經進入過的路徑,會根據頻率進行權重調整命令行中的命令高亮是經過zsh-syntax-highlighting
實現,安裝 zsh-syntax-highlighting
的方法有不少,具體能夠查看 Install zsh-syntax-highlighting 若是您已經安裝了oh-my-zsh
,能夠直接按照下面的步驟安裝:github
// Clone this repository in 'oh-my-zsh's plugins directory
$ git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
複製代碼
~/.zshrc
中的插件列表中添加插件// Activate the plugin in `~/.zshrc`
plugins=( [plugins...] zsh-syntax-highlighting)
複製代碼
~/.zshrc
後便可看到改變// Source `~/.zshrc` to take changes into account
$ source ~/.zshrc
複製代碼
讓 iTerm2
是經過 coreutils 實現。shell
coreutils
// 經過brew安裝 `coreutils`
$ brew install xz coreutils
複製代碼
// 生成顏色定義文件
$ gdircolors --print-database > ~/.dir_colors
複製代碼
~/.zshrc
,在您喜歡的位置添加下面代碼if brew list | grep coreutils > /dev/null ; then
PATH="$(brew --prefix coreutils)/libexec/gnubin:$PATH"
alias ls='ls -F --show-control-chars --color=auto'
eval `gdircolors -b $HOME/.dir_colors`
fi
複製代碼
~/.zshrc
就能夠看到效果了// source ~/.zshrc
$ source ~/.zshrc
複製代碼
title: 【Mac】iTerm2 一個更好用的終端vim
author: zhangpengbash
date: 2018.12.18框架
GitHub: github.com/fullstack-z…curl