You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
oh-my-fish/themes/robbyrussell/fish_prompt.fish

15 lines
531 B
Fish

function fish_prompt
if [ (git_branch_name) ]
if [ (is_git_dirty) ]
set git_dirty "✗"
printf '%s➜ %s %s git:(%s%s%s) %s ' (set_color red) (set_color blue) (basename (prompt_pwd)) (set_color red) (git_branch_name) (set_color blue) $git_dirty
else
printf '%s➜ %s %s git:(%s%s%s) ' (set_color red) (set_color blue) (basename (prompt_pwd)) (set_color red) (git_branch_name) (set_color blue)
end
else
printf '%s➜ %s %s ' (set_color red) (set_color blue) (basename (prompt_pwd))
end
end