diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-11-07 23:38:54 +0100 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-11-07 23:50:37 +0100 |
commit | bb7d02d9f8f9a22b00705764f3da4bc19ccce258 (patch) | |
tree | 1a5347fc3064c6099be5a7f13f3dba5b1a1d9cd0 /config/essentials | |
parent | 8d91904414e6f41d653025b90e775fde82ba0e9c (diff) |
checkpoint
Diffstat (limited to 'config/essentials')
-rw-r--r-- | config/essentials/starship.toml | 46 |
1 files changed, 31 insertions, 15 deletions
diff --git a/config/essentials/starship.toml b/config/essentials/starship.toml index c782766..3154b88 100644 --- a/config/essentials/starship.toml +++ b/config/essentials/starship.toml @@ -3,29 +3,45 @@ # Inserts a blank line between shell prompts add_newline = false # format = ' ${custom.upds}' -format = '$directory($git_branch$git_state$git_status$status)$character' -right_format = """""" - -[character] -format = '\$ ' - -[git_branch] -format = '[$branch(:$remote_branch)]($style) ' -style = 'bold purple' - -[git_status] -format = '[$all_status$ahead_behind]($style) ' +format = '$directory$status$character' +right_format = '$all' [directory] truncation_length = 4 style = "bold lavender" +[status] +format = '$status ' +disabled = false + +[character] +format = '\$ ' + [cmd_duration] +format = '( [$duration]($style))' min_time = 500 +style = 'yellow' + +[git_branch] +format = '[$branch]($style)' +style = 'bold purple' +[git_status] +format = '( [$all_status$ahead_behind]($style))' +ahead = '↑' +behind = '↓' +diverged = '↕' + +[c] +disabled = true +[python] +disabled = true +[golang] +disabled = true +[lua] +disabled = true +[nodejs] +disabled = true -[status] -format = '($status)' -disabled = false # [custom.upds] # command = 'cat ~/.cache/updates' # shows output of command |