Add neomutt config Add mpd config Update bspwm config Update sxhkd config Update qutebrowser config Update tmux config Update xinitrc
11 lines
216 B
Fish
11 lines
216 B
Fish
function man
|
|
set oldIFS "$IFS"
|
|
set IFS ""
|
|
set page (/usr/bin/man "$argv" | col -b)
|
|
if ! [ -z "$page" ]
|
|
echo "$page" | nvim -R -c 'set ft=man nomod nolist' -
|
|
end
|
|
|
|
set IFS "$oldIFS"
|
|
end
|