i use arch btw
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

disable man colored less alias in favor of nvim as MANPAGER

+4 -3
+4 -3
fish/.config/fish/functions/man.fish
··· 1 - function man --wraps man --description 'Format and display manual pages' 2 - set -q man_blink; and set -l blink (set_color $man_blink); or set -l blink (set_color -o red) 1 + # disabled in favor of using nvim as MANPAGER 2 + function _man --wraps man --description 'Format and display manual pages' 3 + set -q man_blink; and set -l blink (set_color $man_blink); or set -l blink (set_color -o ff0000) 3 4 set -q man_bold; and set -l bold (set_color $man_bold); or set -l bold (set_color -o 5fafd7) 4 - set -q man_standout; and set -l standout (set_color $man_standout); or set -l standout (set_color 949494) 5 + set -q man_standout; and set -l standout (set_color $man_standout); or set -l standout (set_color 2e3440 -b 88c0d0) 5 6 set -q man_underline; and set -l underline (set_color $man_underline); or set -l underline (set_color -u afafd7) 6 7 7 8 set -l end (printf "\e[0m")