Linux.zsh 313 B

12345678910111213141516171819
  1. #
  2. # Linux Stuff
  3. #
  4. if [ -r /etc/debian_version ]; then
  5. source "$DOTZSHDIR/os.d/Debian.zsh"
  6. fi
  7. if [ "$TERM" != 'dumb' ]; then
  8. if -exe dircolors; then
  9. eval $(dircolors -b)
  10. fi
  11. alias ls='ls -h --color=auto'
  12. alias l='ls -lh --color=auto'
  13. else
  14. alias ls='ls -h'
  15. alias l='ls -lh'
  16. fi