···11function fish_right_prompt
22 set -l vcs_color normal
3344- if command -q jj && test -e ".jj"
44+ if test (pwd) = $dotfiles
55+ return 1
66+ end
77+88+ if command -q jj && test -e "$PWD/.jj"
59 set vcs_color blue
610 set icon (set_color $vcs_color) "๓ฑ" (set_color normal)
77- else if command -q git && test -e ".git"
1111+ else if command -q git && test -e "$PWD/.git"
812 set vcs_color red
913 set icon (set_color $vcs_color) "๎" (set_color normal)
1014 end