[Emacs Lisp] Personal ~/.emacs.d/ configuration folder.
1
# .gitignore for Smart Documents.
2
3
# All secrets!
4
secret*
5
projects
6
7
# Bytecode and native-compiled files.
8
*.elc
9
10
# LaTeX pdf build artefacts.
11
*.pdf
12
*.tex
13
*.log
14
15
# Org export results.
16
*.html
17
18
# All caches
19
*.cache
20
eln-cache/
21
22
# These directories are populated on config execution.
23
meta/**
24
url/**
25
transient/**
26
.cache/**
27
_minted*
28
server/*
29
eshell/*
30
31
# Tangled config .el and .elc file from .org
32
smart-documents.el*
33
34
# Misc
35
.org-id-locations
36
async-bytecomp.log
37
srecode-map.el
38
tramp
39
bookmarks
40
network-security.data
41
*~undo-tree~
42
43
# Executables
44
*.jar
45