6
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

身の回りの困りごとを楽しく解決! by Works Human IntelligenceAdvent Calendar 2024

Day 4

作業中のGithubアカウントを表示する【Starship】

Last updated at Posted at 2024-12-08

Overview 🔍

個人と仕事で、Githubアカウントを使い分けることがあります。

どちらのアカウントで作業中か、わかると便利です。

私の愛用する「Starship」をカスタムし、以下の表示を追加します(edit by ~~~

スクリーンショット 2024-12-08 9.14.59.png

Github アカウントの使い分け 🐾

こちらの記事で完璧です。

Starship 🚀

ターミナルの表示をリッチにし、作業効率を高めるツールです。

macOS / Windowsをはじめ、様々なOSで使用可能。

導入方法はこちら↓↓↓

設定方法 ⚙️

簡単です。

  1. Starshipの導入
  2. 上記記事に基づき、githubアカウント連携を行う
  3. ~/.config/starship.tomlを開く(無ければ作成)
  4. 以下の内容を追加
~/.config/starship.toml
# プロンプトのフォーマット
format = '$all$custom.gituser'

[custom.gituser]
description = "Git user name"
command = "git config user.name"
style = 'bold yellow'
format = 'edit by [$symbol($output )]($style)'
when = "git rev-parse --is-inside-work-tree >/dev/null 2>&1"

gitレポジトリであれば、githubアカウントが表示されているはずです。
スクリーンショット 2024-12-08 9.14.59.png

おわりに

Starshipオススメです!ぜひ使ってみてください 🚀

なお、本記事の内容は個人環境で行ったものです。
もしできないことがあれば、QiitaもしくはXにてコメントいただけますと幸いです。

6
1
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
6
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?