Skip to content

Instantly share code, notes, and snippets.

@brandonpittman
Created August 18, 2016 01:40
Show Gist options
  • Save brandonpittman/e1bcb52345f37bc0ad57da657b6da372 to your computer and use it in GitHub Desktop.
Save brandonpittman/e1bcb52345f37bc0ad57da657b6da372 to your computer and use it in GitHub Desktop.
Colorized man pages (fish)
func man ()
set LESS_TERMCAP_mb \e"[1;31m"
set LESS_TERMCAP_md \e"[1;31m"
set LESS_TERMCAP_me \e"[0m"
set LESS_TERMCAP_se \e"[0m"
set LESS_TERMCAP_so \e"[1;44;33m"
set LESS_TERMCAP_ue \e"[0m"
set LESS_TERMCAP_us \e"[1;32m"
command man argv
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment