diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-02-03 18:29:31 +0100 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-02-03 18:29:31 +0100 |
commit | 07ad983aebf388065be7d650b7e08204100d1ed4 (patch) | |
tree | 5a3ae361ea5e84c36a577f385bce308bab0dfee1 /config/essentials/starship.toml | |
parent | 541d9fa7014c5c197f7c8a09fa159ac84bd9a6a8 (diff) |
Update shell
*Added alias
*changed mutt to not use symlink
*changed starship looks
*use comp.zsh instead of plugin
*remove git-alias plugin
*added auto rehash
*removed rehash hook
Diffstat (limited to 'config/essentials/starship.toml')
-rw-r--r-- | config/essentials/starship.toml | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/config/essentials/starship.toml b/config/essentials/starship.toml index 5934cca..0a9faaf 100644 --- a/config/essentials/starship.toml +++ b/config/essentials/starship.toml @@ -2,24 +2,22 @@ # Inserts a blank line between shell prompts add_newline = false -format = '\[$username[@](bold blue)$hostname\] $all' - +format = ' [\[$username@$hostname\]](bg:#000000) $all' +right_format = """$status""" [character] -success_symbol = "[❯](green)" -error_symbol = "[❮](red)" -vimcmd_symbol = "[❮](green)" +format = ' [❯](bold bright-yellow) ' [username] style_root = "bold red" -style_user = "bold blue" -format = "[$user]($style)" +style_user = "bold purple" +format = "[$user]($style bg:#000000)" show_always = true disabled = false [hostname] ssh_only = false -style = "bold teal" +style = "bold cyan bg:#000000" format = "[$hostname]($style)" [directory] @@ -28,3 +26,7 @@ style = "bold lavender" [cmd_duration] min_time = 500 + +[status] +format = '($status)' +disabled = false |