Skip to content

Commit ed73452

Browse files
committed
Ignore vim and emacs files as well
1 parent 475fc14 commit ed73452

File tree

1 file changed

+62
-3
lines changed

1 file changed

+62
-3
lines changed

.gitignore

Lines changed: 62 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,53 @@
11
.mypy_cache/
22

3-
# Created by https://www.gitignore.io/api/python
3+
# Created by https://www.gitignore.io/api/vim,emacs,python
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
451

552
### Python ###
653
# Byte-compiled / optimized / DLL files
@@ -16,7 +63,6 @@ __pycache__/
1663
env/
1764
build/
1865
develop-eggs/
19-
dist/
2066
downloads/
2167
eggs/
2268
.eggs/
@@ -102,4 +148,17 @@ ENV/
102148
# mkdocs documentation
103149
/site
104150

105-
# End of https://www.gitignore.io/api/python
151+
### Vim ###
152+
# swap
153+
[._]*.s[a-v][a-z]
154+
[._]*.sw[a-p]
155+
[._]s[a-v][a-z]
156+
[._]sw[a-p]
157+
# session
158+
Session.vim
159+
# temporary
160+
.netrwhist
161+
# auto-generated tag files
162+
tags
163+
164+
# End of https://www.gitignore.io/api/vim,emacs,python

0 commit comments

Comments
 (0)