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.

23 lines
330 B

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