0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

zsh + preztoを使ってみる

Posted at

とくに公式の手順と何ら変わりませんが、一箇所だけ詰まったのでメモ

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

再度ログインすると、切り替わります。

zsh.png

あとはお好みのテーマをいれたりカスタマイズしてください。
.bashrcから環境変数など必要な設定を持ってくることも忘れずに。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?