Some full-screen programs (like mutt) redraw the screen after 'less'
exists so the default must not contain option -F. -F and -X are
recommended for command-line programs that can produce a lot of output.
Option -S is recommended for wide output.
'git' became a shell wrapper for the real git to allow calling it from
other scripts.
[mysql]
auto-rehash
default-character-set=utf8
-pager
+pager="less -FSX"
prompt="\u@\d > "
\set PROMPT2 '... %R '
\set PROMPT3 '>> '
\set VERBOSITY verbose
+\setenv LESS 'FRSXgimq'
\timing on
\unset QUIET
--- /dev/null
+#! /bin/sh
+LESS=FSX"$LESS" exec /usr/bin/git "$@"