autoload -U compinit
compinit
そんでキーバインドをvi風にする
bindkey -v
あとプロンプトを変えておく
PROMPT="%/%%"
テトリスもできるらしい
zsh
autoload -U tetris
zle -N tetris
bindkey '^T' tetris
Control-T を押せばゲーム開始。zsh最強。
autoload -U compinit
compinit
bindkey -v
PROMPT="%/%%"
zsh
autoload -U tetris
zle -N tetris
bindkey '^T' tetris