mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-25 03:51:54 +08:00
57 lines
1.7 KiB
Fish
57 lines
1.7 KiB
Fish
# name: Sorin
|
|
# author: Ivan Tham <ivanthamjunhoe@gmail.com>
|
|
|
|
function fish_prompt
|
|
test $SSH_TTY
|
|
and printf (set_color red)$USER(set_color brwhite)'@'(set_color yellow)(prompt_hostname)' '
|
|
test "$USER" = 'root'
|
|
and echo (set_color red)"#"
|
|
|
|
# Main
|
|
echo -n (set_color cyan)(prompt_pwd) (set_color red)'❯'(set_color yellow)'❯'(set_color green)'❯ '
|
|
end
|
|
|
|
function fish_right_prompt
|
|
# last status
|
|
test $status != 0
|
|
and printf (set_color red)"⏎ "
|
|
|
|
if git rev-parse ^/dev/null
|
|
# Magenta if branch detached else green
|
|
git branch -qv | grep "\*" | string match -rq detached
|
|
and set_color brmagenta
|
|
or set_color brgreen
|
|
|
|
# Need optimization on this block (eliminate space)
|
|
git name-rev --name-only HEAD
|
|
|
|
# Merging state
|
|
git merge -q ^/dev/null
|
|
or printf ':'(set_color red)'merge'
|
|
printf ' '
|
|
|
|
# Symbols
|
|
for i in (git branch -qv --no-color|grep \*|cut -d' ' -f4-|cut -d] -f1|tr , \n)\
|
|
(git status --porcelain | cut -c 1-2 | uniq)
|
|
switch $i
|
|
case "*[ahead *"
|
|
printf (set_color magenta)⬆' '
|
|
case "*behind *"
|
|
printf (set_color magenta)⬇' '
|
|
case "."
|
|
printf (set_color green)✚' '
|
|
case " D"
|
|
printf (set_color red)✖' '
|
|
case "*M*"
|
|
printf (set_color blue)✱' '
|
|
case "*R*"
|
|
printf (set_color brmagenta)➜' '
|
|
case "*U*"
|
|
printf (set_color bryellow)═' '
|
|
case "??"
|
|
printf (set_color brwhite)◼' '
|
|
end
|
|
end
|
|
end
|
|
end
|