aboutsummaryrefslogtreecommitdiff
path: root/.gitignore
blob: 4b89c1f5b3f48c478262ada5ed6902f686c5c703 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# --- EMACS BACKUPS ----------------------------------------------------
*~
\#*#

# --- MACOS CACHE ------------------------------------------------------
.DS_Store

# --- LATEX AUXILLARY FILES --------------------------------------------
*.aux
*.fdb_latexmk
*.fls
*.log
*.nav
*.out
*.snm
*.synctex.gz
*.toc
*.lun
*.lbf*

# --- COMPILED DOCUMENTS -----------------------------------------------
*.pdf
*.ps
*.dvi

# --- COMPILED PROGRAMS ------------------------------------------------
# Remember to use .bin when compiling to binaries; I used to use .elf
# but not everyone's system uses elfs, and we don't need .macho, .exe,
# .elf, and every other executable format
*.o
*.bin
__pycache__

# --- INCLUSIONS -------------------------------------------------------
# Everything in image folders should be included, even if they are
# otherwise ignored, e.g. PDFs
!img/**
!**/img/**


# vim: colorcolumn=73 tw=72