diff --git a/starship/.config/starship.toml b/starship/.config/starship.toml index c9a353c..75fc15b 100644 --- a/starship/.config/starship.toml +++ b/starship/.config/starship.toml @@ -1,3 +1,6 @@ +# Get editor completions based on the config schema +"$schema" = 'https://starship.rs/config-schema.json' + format = """\ $username\ $hostname\ @@ -6,6 +9,7 @@ format = """\ $git_commit\ $git_state\ $git_status\ + $git_metrics\ $python \ $time \ $line_break\ @@ -37,6 +41,9 @@ style = "yellow" modified = "±" format = "[$conflicted$deleted$renamed$modified$staged$ahead_behind]($style) " +[git_metrics] +disabled = false + [python] format = '[(\($virtualenv\))]($style)' python_binary = ["python3", "python", "python2"] @@ -47,7 +54,6 @@ style = "purple" time_format = "%F %I:%M%p" format = "[$time]($style)" - [cmd_duration] min_time = 0 style = "black bold"