all repos — dotfiles @ d3040ead02669642a3d4d07cce983fd59e6565d5

my *nix dotfiles

config/fish/functions/fish_prompt.fish (view raw)

 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