summary refs log tree commit diff
path: root/dot_local/share/zsh/coloured-man/coloured-man.plugin.zsh
blob: ddaa38bfe039a0f990d841036cce5bfab6e66e47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
function man() {
    # mb/md - bold+blinking
    # so - standout
    # us - underliined
    LESS_TERMCAP_mb="${fg_bold[red]}" \
    LESS_TERMCAP_md="${fg_bold[red]}" \
    LESS_TERMCAP_me="${reset_color}" \
    LESS_TERMCAP_so="${fg_bold[yellow]}${bg[blue]}" \
    LESS_TERMCAP_se="${reset_color}" \
    LESS_TERMCAP_us="${fg_bold[green]}" \
    LESS_TERMCAP_ue="${reset_color}" \
    command env man "$@"
}