Vim kann sogar als pager genutzt werden. Der Vorteil man hat auch Syntax-Highlighting, sofern das Terminal das unterstüzt.
$ cat ~/.vim/more.vim
" source everything from ~/.vimrc
so $HOME/.vimrc
" remove blankspace on each side of 'CR' on the line below
" the formatting with angled brackets is destroyed when posting here...
nmap q :q<CR>
" vi:ts=4 sw=4 expandtab
$
$ grep pager ~/.bashrc
export PAGER="col -b | view -X -u ~/.vim/more.vim -c 'set ft=man nomod nolist' -"
$
