.gitignore 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. # Created by https://www.toptal.com/developers/gitignore/api/direnv,emacs,visualstudiocode,vim,git,patch
  2. # Edit at https://www.toptal.com/developers/gitignore?templates=direnv,emacs,visualstudiocode,vim,git,patch
  3. rebuild.sh
  4. ### direnv ###
  5. .direnv
  6. .envrc
  7. ### Emacs ###
  8. # -*- mode: gitignore; -*-
  9. *~
  10. \#*\#
  11. /.emacs.desktop
  12. /.emacs.desktop.lock
  13. *.elc
  14. auto-save-list
  15. tramp
  16. .\#*
  17. # Org-mode
  18. .org-id-locations
  19. *_archive
  20. # flymake-mode
  21. *_flymake.*
  22. # eshell files
  23. /eshell/history
  24. /eshell/lastdir
  25. # elpa packages
  26. /elpa/
  27. # reftex files
  28. *.rel
  29. # AUCTeX auto folder
  30. /auto/
  31. # cask packages
  32. .cask/
  33. dist/
  34. # Flycheck
  35. flycheck_*.el
  36. # server auth directory
  37. /server/
  38. # projectiles files
  39. .projectile
  40. # directory configuration
  41. .dir-locals.el
  42. # network security
  43. /network-security.data
  44. ### Git ###
  45. # Created by git for backups. To disable backups in Git:
  46. # $ git config --global mergetool.keepBackup false
  47. *.orig
  48. # Created by git when using merge tools for conflicts
  49. *.BACKUP.*
  50. *.BASE.*
  51. *.LOCAL.*
  52. *.REMOTE.*
  53. *_BACKUP_*.txt
  54. *_BASE_*.txt
  55. *_LOCAL_*.txt
  56. *_REMOTE_*.txt
  57. ### Patch ###
  58. *.rej
  59. ### Vim ###
  60. # Swap
  61. [._]*.s[a-v][a-z]
  62. !*.svg # comment out if you don't need vector files
  63. [._]*.sw[a-p]
  64. [._]s[a-rt-v][a-z]
  65. [._]ss[a-gi-z]
  66. [._]sw[a-p]
  67. # Session
  68. Session.vim
  69. Sessionx.vim
  70. # Temporary
  71. .netrwhist
  72. # Auto-generated tag files
  73. tags
  74. # Persistent undo
  75. [._]*.un~
  76. ### VisualStudioCode ###
  77. .vscode/*
  78. !.vscode/settings.json
  79. !.vscode/tasks.json
  80. !.vscode/launch.json
  81. !.vscode/extensions.json
  82. !.vscode/*.code-snippets
  83. # Local History for Visual Studio Code
  84. .history/
  85. # Built Visual Studio Code Extensions
  86. *.vsix
  87. ### VisualStudioCode Patch ###
  88. # Ignore all local history of files
  89. .history
  90. .ionide
  91. # End of https://www.toptal.com/developers/gitignore/api/direnv,emacs,visualstudiocode,vim,git,patch