diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-02-02 02:13:40 +0100 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-02-02 02:13:40 +0100 |
commit | e9752056b6eb824b85854e20dadac31c197cd235 (patch) | |
tree | f60f7ba21b8bdfcfadb7f504679a9b13daa343e0 /config/essentials/starship.toml | |
parent | ca0cec60dacc4e8c6f8f37e0605b72bac54c9ea6 (diff) | |
parent | 541d9fa7014c5c197f7c8a09fa159ac84bd9a6a8 (diff) |
Merge branch 'main' of debuc.com:dotfiles
Diffstat (limited to 'config/essentials/starship.toml')
-rw-r--r-- | config/essentials/starship.toml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/config/essentials/starship.toml b/config/essentials/starship.toml new file mode 100644 index 0000000..5934cca --- /dev/null +++ b/config/essentials/starship.toml @@ -0,0 +1,30 @@ +'$schema' = "https://starship.rs/config-schema.json" + +# Inserts a blank line between shell prompts +add_newline = false +format = '\[$username[@](bold blue)$hostname\] $all' + + +[character] +success_symbol = "[❯](green)" +error_symbol = "[❮](red)" +vimcmd_symbol = "[❮](green)" + +[username] +style_root = "bold red" +style_user = "bold blue" +format = "[$user]($style)" +show_always = true +disabled = false + +[hostname] +ssh_only = false +style = "bold teal" +format = "[$hostname]($style)" + +[directory] +truncation_length = 4 +style = "bold lavender" + +[cmd_duration] +min_time = 500 |