You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
303 B

  1. # vim: set ft=sh sw=2 et :
  2. ##
  3. ## Editors
  4. ##
  5. export EDITOR=vi
  6. export GIT_EDITOR="$EDITOR"
  7. export USE_EDITOR="$EDITOR"
  8. export VISUAL=$EDITOR
  9. export PAGER=less
  10. ##
  11. ## Pager
  12. ##
  13. export PAGER=less
  14. export LESS='-iFMRSX -x4'
  15. if [ -f "$HOME/.shell-env.local" ]; then
  16. . "$HOME/.shell-env.local"
  17. fi
  18. umask 022