Skip to content

Commit 4f4d14e

Browse files
Merge pull request #484 from tillrampe/gitignore
Improve the list of files that git ignores
2 parents 365131e + e936ec9 commit 4f4d14e

File tree

1 file changed

+44
-1
lines changed

1 file changed

+44
-1
lines changed

.gitignore

Lines changed: 44 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,47 @@
1+
# Agda interface files (compiled outputs)
12
*.agdai
3+
4+
# Emacs backup and auto-save files
5+
*~
6+
.#*
7+
\#*\#
8+
.\#*
9+
.\#*\#
10+
*.elc
11+
12+
# Emacs desktop save mode files
13+
.desktop
14+
.emacs.desktop
15+
.emacs.desktop.lock
16+
17+
# Emacs tramp temporary files
18+
.tramp
19+
20+
# Projectile project files
21+
.projectile
22+
23+
# Other Emacs temp or session files
24+
.session
25+
26+
# VSCode project settings
27+
.vscode/
28+
29+
# Agda standard library build cache (if you're vendoring it)
30+
**/_build/
31+
32+
# Agda MAlonzo backend generated code
33+
src/MAlonzo/
34+
35+
# Log files, core dumps, etc.
36+
*.log
37+
*.dump
38+
*.out
39+
40+
# macOS clutter
241
.DS_Store
3-
src/MAlonzo
42+
43+
# Windows thumbnails
44+
Thumbs.db
45+
46+
# Ignore Everything.agda
447
Everything.agda

0 commit comments

Comments
 (0)