153
124

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プロンプトのカスタマイズ

Posted at

使用できる特殊文字

文字 出力
%n ユーザー名
%m ホスト名
%~ カレントディレクトリ
%T 時間(HH:MM)
%* 時間(HH:MM:SS)
%D 日付(YY-MM-DD)

改行を入れる

文字列中に改行をいれると表示も改行される

PROMPT='%n
%m $ '
表示結果
user_name
host_name $ 

##書き方
文字をシアンにする方法は以下の通り

PROMPT='%{${fg[cyan]}%} $n %{${reset_color}%}'

##色の一覧

色の文字、もしくは番号で色を指定することもできる。

番号
0 black
1 red
2 green
3 yellow
4 blue
5 magenta
6 cyan
7 white

#参考URL

153
124
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
153
124

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?