The very personal dotfiles of Levi Olson.
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.

35 lines
852 B

6 years ago
  1. #!/bin/bash
  2. ##################################################
  3. # .exports
  4. # ------------
  5. # Loosly based on the amazing work of Jess Frazelle
  6. #
  7. # :author: Levi Olson
  8. # :date: 1 Feb 2018
  9. # :version: 0.0.1
  10. ##################################################
  11. export EDITOR=emacsclient
  12. export TERMINAL=kitty
  13. # Larger bash history (allow 32³ entries; default is 500)
  14. export HISTSIZE=50000000
  15. export HISTFILESIZE=$HISTSIZE
  16. export HISTCONTROL=ignoreboth:erasedups
  17. # Prefer US English and use UTF-8
  18. export LANG="en_US.UTF-8"
  19. export LC_ALL="en_US.UTF-8"
  20. # Don't clear the screen after quitting a manual page
  21. export MANPAGER="less -X"
  22. export JOURNAL_DIR=$HOME/org/journal
  23. export PROJECTS_DIR=$HOME/Projects
  24. # DPI for GTK apps
  25. export GDK_SCALE=1
  26. export GDK_DPI_SCALE=1
  27. export QT_DEVICE_PIXEL_RATIO=1
  28. export GI_TYPELIB_PATH="/usr/local/lib/girepository-1.0"