Skip to content

Instantly share code, notes, and snippets.

@gak
Created June 9, 2013 12:36
Show Gist options
  • Save gak/5743373 to your computer and use it in GitHub Desktop.
Save gak/5743373 to your computer and use it in GitHub Desktop.
My custom fish prompt code explained at http://geraldkaszuba.com/tweaking-fish-shell/
set fish_color_error ff8a00
# c0 to c4 progress from dark to bright
# ce is the error colour
set -g c0 (set_color 005284)
set -g c1 (set_color 0075cd)
set -g c2 (set_color 009eff)
set -g c3 (set_color 6dc7ff)
set -g c4 (set_color ffffff)
set -g ce (set_color $fish_color_error)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment