all repos — dotfiles @ bd759f5764f4bc45d6af499868bf9310da0425f0

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