From 5612f0f7b5b492dd0bdff280c1dfc83057873b01 Mon Sep 17 00:00:00 2001 From: Kenneth Date: Fri, 3 May 2024 03:02:08 +0100 Subject: [PATCH] initial commit --- starship.toml | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 starship.toml diff --git a/starship.toml b/starship.toml new file mode 100644 index 0000000..6862a72 --- /dev/null +++ b/starship.toml @@ -0,0 +1,45 @@ +format = """ +$cmd_duration\ +[╭─](dimmed) \ +$directory\ +$git_branch\ +$git_state\ +$git_status\ +$line_break\ +$character""" + +[directory] +format = '[󰝰 $path]($style)' +style = "bold blue" + +[character] +success_symbol = "[╰─(✿ ͡◕ ᴗ◕\\)つ━━✫・*。](dimmed)" +error_symbol = "[╰─](dimmed)[ Ψ\\(`_´ # \\)↝](red)" +vimcmd_symbol = "[❮](green)" + +[git_branch] +format = " [ $branch]($style)" +style = "yellow" + +[git_status] +format = "[[(*$conflicted$untracked$modified$staged$renamed$deleted)](218) ($ahead_behind$stashed)]($style)" +style = "cyan" +conflicted = "​" +untracked = "​" +modified = "​" +staged = "​" +renamed = "​" +deleted = "​" +stashed = "≡" + +[git_state] +format = '\([$state( $progress_current/$progress_total)]($style)\) ' +style = "bright-black" + +[cmd_duration] +format = "[( 󱎫 took $duration\n)]($style)" +style = "dimmed" + +[python] +format = "[$virtualenv]($style) " +style = "bright-black"