diff options
author | Vidhu Kant Sharma <vidhukant@protonmail.ch> | 2021-12-02 22:55:38 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@protonmail.ch> | 2021-12-02 22:55:38 +0530 |
commit | 6acbf44c24bd3ac8f8dfed86bcfcb7d10ac698cb (patch) | |
tree | 4500f594570d7b28686d9ae7f8af1e20fc935466 | |
parent | 625d1bda2937821e0709cc070532f05e551f0ce6 (diff) |
added exit codes and change colorscheme in starship
-rw-r--r-- | .config/starship.toml | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/.config/starship.toml b/.config/starship.toml index f48d4f0..72e8c18 100644 --- a/.config/starship.toml +++ b/.config/starship.toml @@ -2,25 +2,23 @@ add_newline = false format = "$all" - - [character] -success_symbol = "[](blue)" -error_symbol = "[](red)" -vicmd_symbol = "[](green)" - - -[battery] -disabled = true +success_symbol = "[](#9B35E8)" +error_symbol = "[](#F516A4)" +vicmd_symbol = "[](#0fe9b0)" [line_break] disabled = true +[status] +style = "bg:blue" +format = '[\[$common_meaning$signal_name$maybe_int\]]($style) ' +map_symbol = true +disabled = false + [cmd_duration] disabled = false min_time = 5000 -format = "[took](yellow) [$duration](bold #FF0074) " -show_notifications = true +format = "[took](yellow) [$duration](bold #F516A4) " +show_notifications = false min_time_to_notify = 10000 - - |