.gitignore 466 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. # ---> Vim
  2. [._]*.s[a-w][a-z]
  3. [._]s[a-w][a-z]
  4. *.un~
  5. Session.vim
  6. .netrwhist
  7. *~
  8. # ---> Linux
  9. *~
  10. # KDE directory preferences
  11. .directory
  12. # Linux trash folder which might appear on any partition or disk
  13. .Trash-*
  14. # ---> C
  15. # Object files
  16. *.o
  17. *.ko
  18. *.obj
  19. *.elf
  20. # Precompiled Headers
  21. *.gch
  22. *.pch
  23. # Libraries
  24. *.lib
  25. *.a
  26. *.la
  27. *.lo
  28. # Shared objects (inc. Windows DLLs)
  29. *.dll
  30. *.so
  31. *.so.*
  32. *.dylib
  33. # Executables
  34. *.exe
  35. *.out
  36. *.app
  37. *.i*86
  38. *.x86_64
  39. *.hex
  40. # Debug files
  41. *.dSYM/