Starship でプロンプトをお洒落にする。
手順
1. Starship のインストール
公式 HP の手順に従ってインストールする。
2. ターミナルのフォント変更
ターミナルを起動してメニューの設定からフォントを FiraCode Nerd Font
に変更する。
3. VSCode のフォント変更
設定ファイル(JSON)を開いて次を記載する。
{
"editor.fontFamily": "FiraCode Nerd Font"
}
参考
公式の設定例 を参考に次の内容で利用中。
# Use custom format
format = '''
[┌───────────────────>](bold green)
[│](bold green)$directory$git_branch$git_status
[└─>](bold green) '''
# Wait 10 milliseconds for starship to check files under the current directory.
scan_timeout = 10
# Disable the blank line at the start of the prompt
add_newline = false
# Set 'foo' as custom color palette
palette = 'foo'
# Define custom colors
[palettes.foo]
# Overwrite existing color
blue = '21'
# Define new color
mustard = '#af8700'