Notes, code, and other related materials generated while reading through Donald E. Knuth's "The Art of Computer Programming"

.gitignore 524B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # Created by https://www.gitignore.io/api/linux,emacs
  2. ### Linux ###
  3. *~
  4. # KDE directory preferences
  5. .directory
  6. # Linux trash folder which might appear on any partition or disk
  7. .Trash-*
  8. ### Emacs ###
  9. # -*- mode: gitignore; -*-
  10. *~
  11. \#*\#
  12. /.emacs.desktop
  13. /.emacs.desktop.lock
  14. *.elc
  15. auto-save-list
  16. tramp
  17. .\#*
  18. # Org-mode
  19. .org-id-locations
  20. *_archive
  21. # flymake-mode
  22. *_flymake.*
  23. # eshell files
  24. /eshell/history
  25. /eshell/lastdir
  26. # elpa packages
  27. /elpa/
  28. # reftex files
  29. *.rel
  30. # AUCTeX auto folder
  31. /auto/
  32. # cask packages
  33. .cask/