shell概念:
主要的shell有 bash 和 zsh和其他
安裝 iTerm2
下載 iTerm2 解壓后拖到應用程序
修改默認shell為zsh
# 顯示當前shell
$ echo $SHELL
/bin/zsh
# zsh版本
$ zsh --version
# 修改默認shell
$ chsh -s $(which zsh)
# 重啟終端
# 查看當前默認shell
$ echo $SHELL
/bin/zsh
安裝oh-my-zsh
# 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 -)"
安裝成功后會自行配置zsh
Plugins
z
根據(jù)訪問歷史自動跳轉(zhuǎn)目錄的插件赡艰,eg:
$ z th
# 則自動跳轉(zhuǎn)到
/Users/uesrname/.oh-my-zsh/themes目錄下
d
查看目錄訪問歷史梗夸,使用
$ d
0 ~
1 /etc
2 ~/.oh-my-zsh/themes
3 ~/.oh-my-zsh/plugins
osx
-
man-preview
通過 preview 程序查看一個命令的手冊 -
quick-look
快速預覽文件 -
pfd
返回當前 Finder 打開的文件夾的路徑 -
cdf
切換到當前 Finder 所在的目錄
zsh-autosuggestions
官方地址 zsh-autosuggestions
安裝到oh-my-zsh
# 1 下載到本地
$ git clone git://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions
# 添加到~/.zshrc
$ vim ~/.zshrc
...
And so on ..
Themes
默認主題 robbyrussell 和 ys
未完待續(xù)...