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

.gitignore 581B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # Created by https://www.gitignore.io/api/linux,emacs,commonlisp
  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/
  34. ### CommonLisp ###
  35. *.FASL
  36. *.fasl
  37. *.lisp-temp