|
| 1 | + |
| 2 | +# Created by https://www.toptal.com/developers/gitignore/api/ocaml,emacs,vim,visualstudiocode,linux,macos,windows |
| 3 | +# Edit at https://www.toptal.com/developers/gitignore?templates=ocaml,emacs,vim,visualstudiocode,linux,macos,windows |
| 4 | + |
| 5 | +### Emacs ### |
| 6 | +# -*- mode: gitignore; -*- |
| 7 | +*~ |
| 8 | +\#*\# |
| 9 | +/.emacs.desktop |
| 10 | +/.emacs.desktop.lock |
| 11 | +*.elc |
| 12 | +auto-save-list |
| 13 | +tramp |
| 14 | +.\#* |
| 15 | + |
| 16 | +# Org-mode |
| 17 | +.org-id-locations |
| 18 | +*_archive |
| 19 | + |
| 20 | +# flymake-mode |
| 21 | +*_flymake.* |
| 22 | + |
| 23 | +# eshell files |
| 24 | +/eshell/history |
| 25 | +/eshell/lastdir |
| 26 | + |
| 27 | +# elpa packages |
| 28 | +/elpa/ |
| 29 | + |
| 30 | +# reftex files |
| 31 | +*.rel |
| 32 | + |
| 33 | +# AUCTeX auto folder |
| 34 | +/auto/ |
| 35 | + |
| 36 | +# cask packages |
| 37 | +.cask/ |
| 38 | +dist/ |
| 39 | + |
| 40 | +# Flycheck |
| 41 | +flycheck_*.el |
| 42 | + |
| 43 | +# server auth directory |
| 44 | +/server/ |
| 45 | + |
| 46 | +# projectiles files |
| 47 | +.projectile |
| 48 | + |
| 49 | +# directory configuration |
| 50 | +.dir-locals.el |
| 51 | + |
| 52 | +# network security |
| 53 | +/network-security.data |
| 54 | + |
| 55 | + |
| 56 | +### Linux ### |
| 57 | + |
| 58 | +# temporary files which can be created if a process still has a handle open of a deleted file |
| 59 | +.fuse_hidden* |
| 60 | + |
| 61 | +# KDE directory preferences |
| 62 | +.directory |
| 63 | + |
| 64 | +# Linux trash folder which might appear on any partition or disk |
| 65 | +.Trash-* |
| 66 | + |
| 67 | +# .nfs files are created when an open file is removed but is still being accessed |
| 68 | +.nfs* |
| 69 | + |
| 70 | +### macOS ### |
| 71 | +# General |
| 72 | +.DS_Store |
| 73 | +.AppleDouble |
| 74 | +.LSOverride |
| 75 | + |
| 76 | +# Icon must end with two \r |
| 77 | +Icon |
| 78 | + |
| 79 | +# Thumbnails |
| 80 | +._* |
| 81 | + |
| 82 | +# Files that might appear in the root of a volume |
| 83 | +.DocumentRevisions-V100 |
| 84 | +.fseventsd |
| 85 | +.Spotlight-V100 |
| 86 | +.TemporaryItems |
| 87 | +.Trashes |
| 88 | +.VolumeIcon.icns |
| 89 | +.com.apple.timemachine.donotpresent |
| 90 | + |
| 91 | +# Directories potentially created on remote AFP share |
| 92 | +.AppleDB |
| 93 | +.AppleDesktop |
| 94 | +Network Trash Folder |
| 95 | +Temporary Items |
| 96 | +.apdisk |
| 97 | + |
| 98 | +### OCaml ### |
| 99 | +*.annot |
| 100 | +*.cmo |
| 101 | +*.cma |
| 102 | +*.cmi |
| 103 | +*.a |
| 104 | +*.o |
| 105 | +*.cmx |
| 106 | +*.cmxs |
| 107 | +*.cmxa |
| 108 | + |
| 109 | +# ocamlbuild working directory |
| 110 | +_build/ |
| 111 | + |
| 112 | +# ocamlbuild targets |
| 113 | +*.byte |
| 114 | +*.native |
| 115 | + |
| 116 | +# oasis generated files |
| 117 | +setup.data |
| 118 | +setup.log |
| 119 | + |
| 120 | +# Merlin configuring file for Vim and Emacs |
| 121 | +.merlin |
| 122 | + |
| 123 | +# Dune generated files |
| 124 | +*.install |
| 125 | + |
| 126 | +# Local OPAM switch |
| 127 | +_opam/ |
| 128 | + |
| 129 | +### Vim ### |
| 130 | +# Swap |
| 131 | +[._]*.s[a-v][a-z] |
| 132 | +!*.svg # comment out if you don't need vector files |
| 133 | +[._]*.sw[a-p] |
| 134 | +[._]s[a-rt-v][a-z] |
| 135 | +[._]ss[a-gi-z] |
| 136 | +[._]sw[a-p] |
| 137 | + |
| 138 | +# Session |
| 139 | +Session.vim |
| 140 | +Sessionx.vim |
| 141 | + |
| 142 | +# Temporary |
| 143 | +.netrwhist |
| 144 | +# Auto-generated tag files |
| 145 | +tags |
| 146 | +# Persistent undo |
| 147 | +[._]*.un~ |
| 148 | + |
| 149 | +### VisualStudioCode ### |
| 150 | +.vscode/* |
| 151 | +!.vscode/settings.json |
| 152 | +!.vscode/tasks.json |
| 153 | +!.vscode/launch.json |
| 154 | +!.vscode/extensions.json |
| 155 | +!.vscode/*.code-snippets |
| 156 | + |
| 157 | +# Local History for Visual Studio Code |
| 158 | +.history/ |
| 159 | + |
| 160 | +# Built Visual Studio Code Extensions |
| 161 | +*.vsix |
| 162 | + |
| 163 | +### VisualStudioCode Patch ### |
| 164 | +# Ignore all local history of files |
| 165 | +.history |
| 166 | +.ionide |
| 167 | + |
| 168 | +# Support for Project snippet scope |
| 169 | + |
| 170 | +### Windows ### |
| 171 | +# Windows thumbnail cache files |
| 172 | +Thumbs.db |
| 173 | +Thumbs.db:encryptable |
| 174 | +ehthumbs.db |
| 175 | +ehthumbs_vista.db |
| 176 | + |
| 177 | +# Dump file |
| 178 | +*.stackdump |
| 179 | + |
| 180 | +# Folder config file |
| 181 | +[Dd]esktop.ini |
| 182 | + |
| 183 | +# Recycle Bin used on file shares |
| 184 | +$RECYCLE.BIN/ |
| 185 | + |
| 186 | +# Windows Installer files |
| 187 | +*.cab |
| 188 | +*.msi |
| 189 | +*.msix |
| 190 | +*.msm |
| 191 | +*.msp |
| 192 | + |
| 193 | +# Windows shortcuts |
| 194 | +*.lnk |
| 195 | + |
| 196 | +# End of https://www.toptal.com/developers/gitignore/api/ocaml,emacs,vim,visualstudiocode,linux,macos,windows |
|
0 commit comments