diff options
Diffstat (limited to 'starship.toml')
-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 + |