mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-09 13:10:40 +00:00
37 lines
724 B
Fish
37 lines
724 B
Fish
# name: Zish
|
|
|
|
function _is_git_dirty
|
|
echo (command git status -s --ignore-submodules=dirty ^/dev/null)
|
|
end
|
|
|
|
function fish_prompt
|
|
set_color -o red
|
|
printf '┌─<'
|
|
set_color -o blue
|
|
printf '%s ' (whoami)
|
|
set_color $fish_color_autosuggestion[1]
|
|
printf '@ '
|
|
set_color cyan
|
|
printf '%s ' (hostname|cut -d . -f 1)
|
|
set_color $fish_color_autosuggestion[1]
|
|
printf 'in '
|
|
set_color -o green
|
|
printf '%s' (prompt_pwd)
|
|
set_color -o red
|
|
printf '>'
|
|
|
|
echo
|
|
set_color -o red
|
|
printf '└─<'
|
|
set_color yellow
|
|
printf '%s' (__fish_git_prompt)
|
|
if [ (_is_git_dirty) ]
|
|
set_color blue
|
|
printf '* '
|
|
end
|
|
set_color -o red
|
|
printf '>──'
|
|
set_color yellow
|
|
printf '» '
|
|
set_color normal
|
|
end |