robbyrussell zsh theme ported to fish

This commit is contained in:
Bruno Pinto 2012-07-23 11:00:14 -03:00
parent 768a420582
commit 7694d653cf

View File

@ -0,0 +1,12 @@
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