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

Configure Feed

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

dont print vcs prompt if not installed

Kacaii e9e8de1e 83b387e1

+5
+5
fish/config.fish
··· 116 116 function fish_right_prompt 117 117 set -l vcs_color normal 118 118 119 + # Print nothing if neither git or jj are in the path 120 + if not command -q git || not command -q jj 121 + return 1 122 + end 123 + 119 124 if test -e "./.jj" 120 125 set vcs_color blue 121 126 set icon (set_color $vcs_color) "๓ฑ—†" (set_color normal)