From ca329417f1443f679545fba8e1aa7d8c09e71a5a Mon Sep 17 00:00:00 2001 From: jafreli Date: Sat, 28 Mar 2026 14:35:01 +0000 Subject: [PATCH] =?UTF-8?q?.config/starship.toml=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .config/starship.toml | 66 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 .config/starship.toml diff --git a/.config/starship.toml b/.config/starship.toml new file mode 100644 index 0000000..c3836f0 --- /dev/null +++ b/.config/starship.toml @@ -0,0 +1,66 @@ +command_timeout = 500 +add_newline = false +format = "$directory$git_branch$git_status$git_commit$git_metrics$git_state$python$cmd_duration$fill$time$line_break$character" +[line_break] +disabled = false + +[fill] +symbol = " " + +[character] +success_symbol = "[➜](bold green) " +error_symbol = "[✗](bold red) " + +[cmd_duration] +min_time = 500 +format = "took [$duration](bold yellow) " + +[directory] +read_only = " 🔒" +truncation_length = 3 +truncation_symbol = ".../" +repo_root_style = "underline #1adb00 " + +[git_branch] +symbol = " 📦 " +style = "bold #c79202 inverted" +format = "on [$symbol$branch ]($style) " + +[python] +format = ' [${symbol}${pyenv_prefix}(${version} )(\($virtualenv\) )]($style)' +python_binary = ['./venv/bin/python', './.venv/bin/python', 'python', 'python3', 'python2'] + +[time] +disabled = false +format = '[ 🕙 $time ]($style)' +time_format = "%H:%M:%S" +# utc_time_offset = "" +style = "bold bg:#8a15e2" + +[git_commit] +commit_hash_length = 4 +tag_symbol = '🔖 ' + +[git_state] +format = '[\($state( $progress_current of $progress_total)\)]($style) ' +cherry_pick = '[🍒 PICKING](bold red)' + +[git_metrics] +added_style = 'bold blue' +format = '[+$added]($added_style)/[-$deleted]($deleted_style) ' + +[git_status] +conflicted = '🏳' +ahead = '🏎💨' +behind = '😰' +diverged = '😵' +up_to_date = '👌' +untracked = '🤷' +stashed = '📦' +modified = '📝' +staged = '[++\($count\)](green)' +renamed = '👅' +deleted = '🗑' + +[package] +disabled = true \ No newline at end of file