From e7dfcf558e6934e1a24906907adb1983ccac3ac0 Mon Sep 17 00:00:00 2001 From: Wesley Irvin Date: Thu, 1 Feb 2024 20:21:22 -0500 Subject: [PATCH] New File: .config/starship.toml Added in .config/starship.toml to be tracked as a dotfile --- .config/starship.toml | 76 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 .config/starship.toml diff --git a/.config/starship.toml b/.config/starship.toml new file mode 100644 index 0000000..5b0628b --- /dev/null +++ b/.config/starship.toml @@ -0,0 +1,76 @@ +format = """ +[░▒▓](#9d7cd8)\ +$os\ +[](bg:#394b70 fg:#9d7cd8)\ +$directory\ +[](fg:#394b70 bg:#ff9e64)\ +$git_branch\ +$git_status\ +[](fg:#ff9e64 bg:#3d59a1)\ +$rust\ +$python\ +[](fg:#3d59a1 bg:#414868)\ +$cmd_duration\ +[ ](fg:#414868)\ +\n$character""" + +right_format = """ +$status \ +$sudo\ +""" + +[cmd_duration] +style = "fg:#7aa2f7 bg:#414868" +format = '[ took ]($style)[ $duration](fg:bold #ff007c bg:#414868)' + +[directory] +style = "fg:#bb9af7 bg:#394b70" +format = "[ $path ]($style)" +truncation_length = 3 +truncation_symbol = "…/" +home_symbol = " " + +[directory.substitutions] +"Documents" = "󰈙 " +"Downloads" = " " +"Music" = " " +"Pictures" = " " +"Desktop" = "󰧨 " +"Programming" = "󰅩" +"dotfiles" = "" + +[git_branch] +symbol = "" +style = "bg:#c3e88d" +format = '[[ $symbol $branch ](fg:#394b70 bg:#ff9e64)]($style)' + +[git_status] +style = "bg:#c3e88d" +format = '[[($all_status$ahead_behind )](fg:#394b70 bg:#ff9e64)]($style)' + +[rust] +symbol = "" +style = "bg:#212736" +format = '[[ $symbol ($version) ](fg:#ff9e64 bg:#3d59a1)]($style)' + +[python] +style = "bg:#3d59a1 fg:#ff9e64" +format = '[ via ${symbol}${pyenv_prefix}(${version} )(\($virtualenv\) )]($style)' + +[os] +disabled = false +style = 'bg:#9d7cd8 fg:#c3e88d' +format = '[ $symbol ]($style)' + +[os.symbols] +openSUSE = "" + +[status] +disabled = false +success_symbol = '[](bold #c3e88d)' +map_symbol = true +format = '[$symbol]($style)' + +[sudo] +disabled = false +format = '[$symbol]($style)' -- 2.49.1