.zshrc 384 B

12345678910111213141516171819
  1. #
  2. # Zsh configuration file
  3. # Since 2006, kolter <kolter@openics.org>
  4. #
  5. # This file is distributed in the hope that it will be useful,
  6. # but WITHOUT ANY WARRANTY
  7. #
  8. # Define personal zsh config directory
  9. export ZSHDOTDIR="${HOME}/.zsh"
  10. # Include custom configuration
  11. for f in ${ZSHDOTDIR}/config/*.zsh; do
  12. if [[ -r "${f}" ]]; then
  13. . "${f}"
  14. fi
  15. done
  16. unset ZSHDOTDIR