Meaningless Notebook

我輩は雑記帖である。名はまだない。


下記コマンドで ZInit インスト-ルの前動作を行う。

bash -c "$(curl --fail --show-error --silent --location https://raw.githubusercontent.com/zdharma-continuum/zinit/HEAD/scripts/install.sh)"

下記コマンドを実行して ZInit をインスト-ルする。

source ~/.zshrc
zinit self-update

~/.zshrc に下記 Starship に関するコ-ドを追記する。

# Load starship theme
zinit ice as"command" from"gh-r" \
          atclone"./starship init zsh > init.zsh; ./starship completions zsh > _starship" \
          atpull"%atclone" src"init.zsh"
zinit light starship/starship

下記コマンドを実行して Starship をインスト-ルする。

# Self update
zinit self-update

# Plugin update
zinit update

必要に応じて『~/.zshrc』に Starship の実行ファイルパスを追記して、どのディレクトリからでも使用できるようにする。

export PATH=~/.local/share/zinit/plugins/starship---starship:$PATH

下記コマンドを実行して Starship の設定ファイル格納ディレクトリを作成する。

mkdir -p ~/.config

下記コマンドを実行して Nerd Font をインスト-ルする。

brew install font-hack-nerd-font

下記コマンドを実行して Starship のプリセットをインスト-ルする。

starship preset <プリセット名> -o ~/.config/starship.toml

参考元

Amazon