diff options
author | Vidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com> | 2020-12-09 10:24:21 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com> | 2020-12-09 10:24:21 +0530 |
commit | 20b041d9a9e252cc97fd9f266f06e5693c67865c (patch) | |
tree | db41b2bcc4d36697e20b3ed5713ce131731ecaea | |
parent | 1146340f3cb165611473c29e01118162141c88df (diff) |
disabled some modules that were misbehaving because of missing fonts temporarily
-rw-r--r-- | starship.toml | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/starship.toml b/starship.toml index 8ac9b12f..4ccb0bc6 100644 --- a/starship.toml +++ b/starship.toml @@ -1,12 +1,12 @@ # Don't print a new line at the start of the prompt add_newline = false disable_line_break = true +format = "$all" - -[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" +[character] +success_symbol = "[](blue)" error_symbol = "[](red)" vicmd_symbol = "[](green)" @@ -23,3 +23,19 @@ min_time = 5000 format = "[took](yellow) [$duration](bold #FF0074) " # show_notifications = true # min_time_to_notify = 180000 + +# disabling modules for +# programming languages + +[golang] +disabled = true + +[python] +disabled = true + +[java] +disabled = true + +[lua] +disabled = true + |