commit 2ea92f957e12ae4e8dabcfeff92fba56f11d2c63 Author: jafreli Date: Mon Dec 30 23:57:07 2024 +0000 Starship Starter Config diff --git a/.config/starship.toml b/.config/starship.toml new file mode 100644 index 0000000..aa01b84 --- /dev/null +++ b/.config/starship.toml @@ -0,0 +1,45 @@ +command_timeout = 500 +format = "$directory$git_branch$python$time$cmd_duration$character" +[line_break] +disabled = true + +[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 = "~/" + +[git_branch] +symbol = "  " +style = "bold #e8ec00 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] +disabled = true + +[git_state] +disabled = true + +[git_status] +disabled = true + +[package] +disabled = true \ No newline at end of file