diff options
| author | Federico Igne <undyamon@disroot.org> | 2023-12-30 17:53:03 +0100 |
|---|---|---|
| committer | Federico Igne <undyamon@disroot.org> | 2023-12-30 17:53:03 +0100 |
| commit | 66532348e08af6a0cc385ddab67bd9803ba64c46 (patch) | |
| tree | cdafdd375119507c658ce0f615167643bf18f872 /.gitignore | |
| download | sandy-66532348e08af6a0cc385ddab67bd9803ba64c46.tar.gz sandy-66532348e08af6a0cc385ddab67bd9803ba64c46.zip | |
origin: initial commit
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5258f63 --- /dev/null +++ b/.gitignore | |||
| @@ -0,0 +1,67 @@ | |||
| 1 | # Created by https://www.toptal.com/developers/gitignore/api/linux,vim,ocaml | ||
| 2 | |||
| 3 | ### Linux ### | ||
| 4 | *~ | ||
| 5 | |||
| 6 | # temporary files which can be created if a process still has a handle open of a deleted file | ||
| 7 | .fuse_hidden* | ||
| 8 | |||
| 9 | # KDE directory preferences | ||
| 10 | .directory | ||
| 11 | |||
| 12 | # Linux trash folder which might appear on any partition or disk | ||
| 13 | .Trash-* | ||
| 14 | |||
| 15 | # .nfs files are created when an open file is removed but is still being accessed | ||
| 16 | .nfs* | ||
| 17 | |||
| 18 | ### OCaml ### | ||
| 19 | *.annot | ||
| 20 | *.cmo | ||
| 21 | *.cma | ||
| 22 | *.cmi | ||
| 23 | *.a | ||
| 24 | *.o | ||
| 25 | *.cmx | ||
| 26 | *.cmxs | ||
| 27 | *.cmxa | ||
| 28 | |||
| 29 | # ocamlbuild working directory | ||
| 30 | _build/ | ||
| 31 | |||
| 32 | # ocamlbuild targets | ||
| 33 | *.byte | ||
| 34 | *.native | ||
| 35 | |||
| 36 | # oasis generated files | ||
| 37 | setup.data | ||
| 38 | setup.log | ||
| 39 | |||
| 40 | # Merlin configuring file for Vim and Emacs | ||
| 41 | .merlin | ||
| 42 | |||
| 43 | # Dune generated files | ||
| 44 | *.install | ||
| 45 | |||
| 46 | # Local OPAM switch | ||
| 47 | _opam/ | ||
| 48 | |||
| 49 | ### Vim ### | ||
| 50 | # Swap | ||
| 51 | [._]*.s[a-v][a-z] | ||
| 52 | !*.svg # comment out if you don't need vector files | ||
| 53 | [._]*.sw[a-p] | ||
| 54 | [._]s[a-rt-v][a-z] | ||
| 55 | [._]ss[a-gi-z] | ||
| 56 | [._]sw[a-p] | ||
| 57 | |||
| 58 | # Session | ||
| 59 | Session.vim | ||
| 60 | Sessionx.vim | ||
| 61 | |||
| 62 | # Temporary | ||
| 63 | .netrwhist | ||
| 64 | # Auto-generated tag files | ||
| 65 | tags | ||
| 66 | # Persistent undo | ||
| 67 | [._]*.un~ | ||
