A code base (no slides) presentation on lisp flavored erlang for http://www.meetup.com/Arch-Lisp/

.gitignore 849B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. # Created by https://www.gitignore.io/api/emacs,linux,erlang
  2. ### Emacs ###
  3. # -*- mode: gitignore; -*-
  4. *~
  5. \#*\#
  6. /.emacs.desktop
  7. /.emacs.desktop.lock
  8. *.elc
  9. auto-save-list
  10. tramp
  11. .\#*
  12. # Org-mode
  13. .org-id-locations
  14. *_archive
  15. # flymake-mode
  16. *_flymake.*
  17. # eshell files
  18. /eshell/history
  19. /eshell/lastdir
  20. # elpa packages
  21. /elpa/
  22. # reftex files
  23. *.rel
  24. # AUCTeX auto folder
  25. /auto/
  26. # cask packages
  27. .cask/
  28. dist/
  29. # Flycheck
  30. flycheck_*.el
  31. # server auth directory
  32. /server/
  33. # projectiles files
  34. .projectile
  35. ### Linux ###
  36. *~
  37. # temporary files which can be created if a process still has a handle open of a deleted file
  38. .fuse_hidden*
  39. # KDE directory preferences
  40. .directory
  41. # Linux trash folder which might appear on any partition or disk
  42. .Trash-*
  43. ### Erlang ###
  44. .eunit
  45. deps
  46. *.o
  47. *.beam
  48. *.plt
  49. erl_crash.dump
  50. ebin
  51. rel/example_project
  52. .concrete/DEV_MODE
  53. .rebar