diff options
Diffstat (limited to '.config/starship.toml')
-rw-r--r-- | .config/starship.toml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/.config/starship.toml b/.config/starship.toml new file mode 100644 index 0000000..ad76d5f --- /dev/null +++ b/.config/starship.toml @@ -0,0 +1,32 @@ +format = """ +╭─ \ +$username\ +$hostname\ +$git_branch\ +$directory\ +$line_break\ +╰─ +""" + +[username] +style_user = 'bold purple' +style_root = 'bold purple' +format = '[$user]($style) ' +disabled = false +show_always = true + +[hostname] +ssh_only = false +format = 'on [$hostname](bold blue) ' +disabled = false + +[directory] +format = '[$path]($style)[$read_only]($read_only_style) ' +truncation_length = -1 +truncate_to_repo = false +truncation_symbol = '…/' + +[git_branch] +style = 'bold fg:97' +format = 'at [$symbol$branch(:$remote_branch)]($style) ' + |