Ignore vim swap files

Add vim's .swp files to .gitignore. These files are created by vim
whenever you open a file, so if you have a file open while running
"git status", the .swp file will show up as untracked, which is
kind of annoying.
This commit is contained in:
Jack Taylor 2017-03-18 17:58:44 +09:00
parent bb64fb5b8e
commit 212185a2a3

3
.gitignore vendored
View File

@ -17,6 +17,9 @@ $RECYCLE.BIN/
# Windows shortcuts # Windows shortcuts
*.lnk *.lnk
# Vim swap files
*.swp
# ========================= # =========================
# Operating System Files # Operating System Files
# ========================= # =========================