๐Ÿ”’ Backup for my config files
dotfiles
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

dont print git prompt if not in a repo

Kacaii a345fd9d d3dd2a40

+8 -3
+6 -2
.config/fish/functions/fish_right_prompt.fish
··· 1 1 function fish_right_prompt 2 2 set -l vcs_color normal 3 3 4 - if command -q jj && test -e ".jj" 4 + if test (pwd) = $dotfiles 5 + return 1 6 + end 7 + 8 + if command -q jj && test -e "$PWD/.jj" 5 9 set vcs_color blue 6 10 set icon (set_color $vcs_color) "๓ฑ—†" (set_color normal) 7 - else if command -q git && test -e ".git" 11 + else if command -q git && test -e "$PWD/.git" 8 12 set vcs_color red 9 13 set icon (set_color $vcs_color) "๎™" (set_color normal) 10 14 end
+2 -1
.stow-local-ignore
··· 1 - .jj 1 + \.jj 2 + \.git