Skip to content

Commit

Permalink
Use yellow for unstaged changes in git prompt
Browse files Browse the repository at this point in the history
  • Loading branch information
leouieda committed Sep 18, 2024
1 parent f188b90 commit 10d9a62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bash/.bash/prompt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,11 @@ make_git_prompt ()
if inside_git_repo; then
# Default values for the appearance of the prompt.
local style="\[\e[38;2;137;180;250;1m\]"
local changed="\[\e[38;2;166;227;161;1m\]+"
local changed="\[\e[38;2;249;226;175;1m\]+"
local staged="\[\e[38;2;203;166;247;1m\]•"
local untracked="\[\e[38;2;242;205;205;1m\]?"
local conflict="\[\e[38;2;243;139;168;1m\]x"
local ahead="\[\e[38;2;249;226;175;1m\]↑"
local ahead="\[\e[38;2;166;227;161;1m\]↑"
local behind="\[\e[38;2;250;179;135;1m\]↓"
local noremote="\[\e[38;2;245;194;231;1m\]⑂"
local sep=""
Expand Down

0 comments on commit 10d9a62

Please sign in to comment.