1function fish_prompt --description 'Write out the prompt'
2 set -l cyan (set_color cyan)
3 set -l prefix '▲'
4
5 printf '\n'
6 set_color cyan
7 printf '%s' (prompt_pwd)
8 set_color normal
9
10 printf '%s\n' (__fish_git_prompt)
11 printf '%s ' $prefix
12 end