とくに公式の手順と何ら変わりませんが、一箇所だけ詰まったのでメモ
zshのインストール
sudo apt install -y zsh
zshのパスを確認(後で使います)
which zsh
私の場合は/usr/bin/zsh
でした
zshを起動
zsh
※ 以下のようなメッセージが表示された場合は「q」を選択する。ここで自動で.zshrcとかを作られてしまうと、あとの手順でFile already exsists
と怒られる。
This is the Z Shell configuration function for new users,
zsh-newuser-install.
You are seeing this message because you have no zsh startup files
(the files .zshenv, .zprofile, .zshrc, .zlogin in the directory
~). This function can help you with a few settings that should
make your use of the shell easier.
You can:
(q) Quit and do nothing. The function will be run again next time.
(0) Exit, creating the file ~/.zshrc containing just a comment.
That will prevent this function being run again.
(1) Continue to the main menu.
(2) Populate your ~/.zshrc with the configuration recommended
by the system administrator and exit (you will need to edit
the file by hand, if so desired).
--- Type one of the keys in parentheses ---
Preztoをクローン
git clone --recursive https://github.com/sorin-ionescu/prezto.git "${ZDOTDIR:-$HOME}/.zprezto"
設定ファイルなどを作ってもらうため、以下を実行
setopt EXTENDED_GLOB
for rcfile in "${ZDOTDIR:-$HOME}"/.zprezto/runcoms/^README.md(.N); do
ln -s "$rcfile" "${ZDOTDIR:-$HOME}/.${rcfile:t}"
done
デフォルトのシェルを変更(パスワードを聞かれます)
chsh -s /usr/bin/zsh
再度ログインすると、切り替わります。
あとはお好みのテーマをいれたりカスタマイズしてください。
.bashrcから環境変数など必要な設定を持ってくることも忘れずに。