diff options
| author | nsfisis <nsfisis@gmail.com> | 2021-05-30 21:36:23 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2021-05-30 21:36:23 +0900 |
| commit | 33d1e3dca1531757b768a23777620a212804f529 (patch) | |
| tree | 1707aaf35c1e22561e5dc7e8325fb78a82cbb9dc /.config | |
| parent | 4f3a417a3d9d41ebeb9b5b1b53fb84de52c6c8b1 (diff) | |
| download | dotfiles-33d1e3dca1531757b768a23777620a212804f529.tar.gz dotfiles-33d1e3dca1531757b768a23777620a212804f529.tar.zst dotfiles-33d1e3dca1531757b768a23777620a212804f529.zip | |
Add starship.toml
Diffstat (limited to '.config')
| -rw-r--r-- | .config/starship.toml | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/.config/starship.toml b/.config/starship.toml new file mode 100644 index 0000000..3ecfacf --- /dev/null +++ b/.config/starship.toml @@ -0,0 +1,36 @@ +format = """ +$directory\ +$git_branch\ +$git_commit\ +$git_state\ +$git_status\ +$line_break\ +$jobs\ +[❯](fg:150)[❯](fg:153)[❯](fg:159) """ + +[directory] +style = "fg:75 bold" +truncation_length = 99 +truncate_to_repo = false +read_only = ' \[RO\]' +read_only_style = "fg:75 bold" + +[git_branch] +format = "[$branch]($style) " +style = "green" + +[git_state] +format = '\([$state ($progress_current/$progress_total)]($style)\) ' +rebase = "rebase" +merge = "merge" +revert = "revert" +cherry_pick = "cpick" +bisect = "bisect" +am = "am" +am_or_rebase = "am/rebase" + +[git_status] +style = "cyan" + +[jobs] +symbol = "+ " |
