7
5

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 3 years have passed since last update.

zshの見た目を良い感じにした

Last updated at Posted at 2020-05-13

はじめに

MacOS Catalinaから標準となったzshですが、デフォルトのテーマでは殆ど色がなく無機質な感じがしますよね。
スクリーンショット 2020-05-13 20.21.42.png
また、プロンプトにはユーザー名やPC名ではなく、作業ディレクトリのフルパスやGitブランチ名を表示させたいです。
そんな中で、見た目をお洒落にでき、かつフルパスやGitブランチ名を表示させることができるPowerlineというライブラリを見つけました。

お洒落なソフトウェアエンジニアの皆さんは是非ターミナルの見た目もお洒落にしていきましょう(ちなみに私自身はお洒落には無頓着です...)。

前提

  • 筆者の環境はMacOS 10.15.4です。
  • コマンドラインでgitを使用します。
  • iTerm2を使用することもできますが、今回はTerminal.appで設定します。
  • 本記事では、zshの設定フレームワークであるPreztoを用いて、zshにPowerlineを適用していきます。

手順

  1. Preztoのリポジトリをクローンします。
terminal
$ git clone --recursive https://github.com/sorin-ionescu/prezto.git "${ZDOTDIR:-$HOME}/.zprezto"

2. (あれば)既存の設定ファイルをzsh_origディレクトリに移動します。

terminal
$ mkdir zsh_orig && mv zshmv .zlogin .zlogout .zprofile .zshenv .zshrc zsh_orig

3. Preztoの各種設定ファイルを作成します。

terminal
setopt EXTENDED_GLOB
for rcfile in "${ZDOTDIR:-$HOME}"/.zprezto/runcoms/^README.md(.N); do
  ln -s "$rcfile" "${ZDOTDIR:-$HOME}/.${rcfile:t}"
done

注意
手順2でzsh_origに移動したファイルの設定値を使いたい場合は、ここで新たに作成された各ファイルに追記します。.zshrcはそのまま上書きしてしまっても良いですが、その際は以下を追記してください。

.zshrc
source "${ZDOTDIR:-$HOME}/.zprezto/init.zsh"

4. Zshを再起動するとPreztoのテーマが適用されています。下記のコマンドでテーマをPowerlineに設定します。

terminal
$ prompt powerline

5. この状態でプロンプトが文字化けしてしまっている場合は、Powerline Fontのインストールが必要です。
今回はRicty for Powerlineを使用することとします。
以下のコマンドでインストールできます。

terminal
$ brew tap sanemat/font
$ brew install ricty --with-powerline
$ cp -f /usr/local/Cellar/ricty/4.0.1/share/fonts/Ricty*.ttf ~/Library/Fonts/
# バージョン名の4.0.1は適宜変更
$ fc-cache -vf

6. インストールが完了したら、
ターミナル > 環境設定 > プロファイル > フォント
から、フォントを
Ricty Regular for Powerline
に設定します。
スクリーンショット 2020-05-13 21.12.07.png

7. Hello Powerline Shell!
プロンプトに良い感じでフルパスやgitのブランチ名が表示されています。
スクリーンショット 2020-05-13 21.03.07.png

8. テーマの永続化

この状態では再起動するとテーマが初期化してしまうので、
~/.zprestorczstyle :prezto:module:prompt theme
で始まる行を以下のように編集します.

~/.zpreztorc
zstyle ':prezto:module:prompt' theme 'powerline'

sourceコマンドで反映します。

$ source ~/.zpreztorc

参考

7
5
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
7
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?