Zsh
Setup¶
$ brew update Homebrewのアップデート $ brew install zsh zshインストール $ cat /etc/shells インストールされてるシェルとパスの確認 $ chsh -s /bin/zsh デフォルトのシェルを変更
Settings¶
oh-my-zsh¶
% curl -L http://install.ohmyz.sh | sh
ZSH_THEME¶
非標準コマンド補完 zsh-completions¶
.zshrc の最後
# zsh-completions fpath=(/usr/local/share/zsh-completions $fpath) # 補完機能を有効にする compinit -u
.zshrc¶
TIPS¶
前のディレクトリに戻る
$ cd -
$ cd -<tab>
<tab><tab>
control + R
undo
control + U
Clear
control + L
その他