mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-09 13:10:40 +00:00
13 lines
371 B
Fish
13 lines
371 B
Fish
|
function fish_prompt
|
||
|
if [ (git_branch_name) ]
|
||
|
if [ (is_git_dirty) ]
|
||
|
set git_dirty "✗"
|
||
|
end
|
||
|
|
||
|
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 ' (set_color red) (set_color blue) (basename (prompt_pwd))
|
||
|
end
|
||
|
end
|
||
|
|