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

Configure Feed

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

use `and` and `or` keywords

Kacaii 7e712305 dbae3a91

+3 -7
+3 -7
.config/fish/functions/fish_right_prompt.fish
··· 24 24 end 25 25 26 26 # Code forge 27 - if test -e "$jj_root_dir/.tangled" 28 - set code_forge "๓ฐณ† " 29 - else if test -e "$jj_root_dir/.github" 30 - set code_forge "๎™› " 31 - end 27 + test -e "$jj_root_dir/.tangled"; and set code_forge "๓ฐณ† " 28 + or test -e "$jj_root_dir/.github"; and set code_forge "๎™› " 32 29 33 30 # Git prompt 34 - set -l git_commit_hash \ 35 - (set_color $vcs_color) (fish_git_prompt) (set_color normal) 31 + set -l git_commit_hash (set_color $vcs_color) (fish_git_prompt) (set_color normal) 36 32 37 33 # Vcs text 38 34 if test -n "$jj_root_dir"; and test -n "$jj_description"