aboutsummaryrefslogtreecommitdiff
path: root/fish/.config/fish/functions/man.fish
blob: 0059a736bd3191765a9c5c90b328ba1b591b813e (plain)
1
2
3
4
5
6
function man --description "colored man"
	set -x LESS_TERMCAP_md (printf "\e[1;32m")
	set -x LESS_TERMCAP_me (printf "\e[0m")

	env man $argv
end