.gitignore (1703B)
1 # -- Rust -- 2 /target 3 4 # -- Editors -- 5 # Created by https://www.gitignore.io/api/vim,emacs,visualstudiocode 6 # Edit at https://www.gitignore.io/?templates=vim,emacs,visualstudiocode 7 8 ### Emacs ### 9 # -*- mode: gitignore; -*- 10 *~ 11 \#*\# 12 /.emacs.desktop 13 /.emacs.desktop.lock 14 *.elc 15 auto-save-list 16 tramp 17 .\#* 18 19 # Org-mode 20 .org-id-locations 21 *_archive 22 23 # flymake-mode 24 *_flymake.* 25 26 # eshell files 27 /eshell/history 28 /eshell/lastdir 29 30 # elpa packages 31 /elpa/ 32 33 # reftex files 34 *.rel 35 36 # AUCTeX auto folder 37 /auto/ 38 39 # cask packages 40 .cask/ 41 dist/ 42 43 # Flycheck 44 flycheck_*.el 45 46 # server auth directory 47 /server/ 48 49 # projectiles files 50 .projectile 51 52 # directory configuration 53 .dir-locals.el 54 55 # network security 56 /network-security.data 57 58 59 ### Vim ### 60 # Swap 61 [._]*.s[a-v][a-z] 62 [._]*.sw[a-p] 63 [._]s[a-rt-v][a-z] 64 [._]ss[a-gi-z] 65 [._]sw[a-p] 66 67 # Session 68 Session.vim 69 Sessionx.vim 70 71 # Temporary 72 .netrwhist 73 74 # Auto-generated tag files 75 tags 76 77 # Persistent undo 78 [._]*.un~ 79 80 # Coc configuration directory 81 .vim 82 83 ### VisualStudioCode ### 84 .vscode 85 86 ### VisualStudioCode Patch ### 87 # Ignore all local history of files 88 .history 89 90 # End of https://www.gitignore.io/api/vim,emacs,visualstudiocode 91 92 # -- Python -- 93 94 # Byte-compiled / optimized / DLL files 95 __pycache__/ 96 *.py[cod] 97 *$py.class 98 99 # Distribution / packaging 100 .Python 101 build/ 102 develop-eggs/ 103 dist/ 104 downloads/ 105 eggs/ 106 .eggs/ 107 lib/ 108 lib64/ 109 parts/ 110 sdist/ 111 var/ 112 wheels/ 113 pip-wheel-metadata/ 114 share/python-wheels/ 115 *.egg-info/ 116 .installed.cfg 117 *.egg 118 MANIFEST 119 *.so 120 121 # PEP 582; used by e.g. github.com/David-OConnor/pyflow 122 __pypackages__/ 123 124 # Spyder project settings 125 .spyderproject 126 .spyproject 127 128 # Rope project settings 129 .ropeproject 130 131 # pycharm project settings 132 .idea 133 134 # mypy 135 .mypy_cache/ 136 .dmypy.json 137 dmypy.json 138 139 # poetry 140 poetry.lock