diff options
author | Vidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com> | 2020-12-09 10:09:54 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com> | 2020-12-09 10:09:54 +0530 |
commit | 1146340f3cb165611473c29e01118162141c88df (patch) | |
tree | ceff8f5f30df9ba8fcceadb9b5f1285e3e8aefe4 | |
parent | 7150565b512b80339e86ed7632baef1a31ac8a40 (diff) |
Added starship config
-rw-r--r-- | starship.toml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/starship.toml b/starship.toml new file mode 100644 index 00000000..8ac9b12f --- /dev/null +++ b/starship.toml @@ -0,0 +1,25 @@ +# Don't print a new line at the start of the prompt +add_newline = false +disable_line_break = true + + + + +[character] # The name of the module we are configuring is "character" +success_symbol = "[](blue)" # The "success_symbol" segment is being set to "➜" with the color "bold green" +error_symbol = "[](red)" +vicmd_symbol = "[](green)" + + +[battery] +disabled = true + +[line_break] +disabled = true + +[cmd_duration] +disabled = false +min_time = 5000 +format = "[took](yellow) [$duration](bold #FF0074) " +# show_notifications = true +# min_time_to_notify = 180000 |