diff --git a/one-time-stuff/basic-settings.sh b/one-time-stuff/basic-settings.sh index e280b49..36b6b2f 100755 --- a/one-time-stuff/basic-settings.sh +++ b/one-time-stuff/basic-settings.sh @@ -18,6 +18,16 @@ else echo 'Skipping' fi +read -p 'Set pager to display short output directly? [y/N]: ' set_pager +case $set_pager in + [Yy]* ) + git config --global core.pager "less -X -F" + ;; + * ) + echo 'Skipping' + ;; +esac + # ---------------------------------------------------------- echo "----- User Groups (requires sudo) -------------------"