aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2014-04-30 21:03:29 -0400
committerTeddy Wing2014-04-30 21:03:29 -0400
commitef30c20c778ea80e03cc9799e0da939a35936850 (patch)
tree4b994867ebd8812987fbc0356c9320505ddf42cc
parent4341bad253e4448b4e98845e7a3f9883816a80e4 (diff)
downloaddotvim-ef30c20c778ea80e03cc9799e0da939a35936850.tar.bz2
Add backup directories
* Add backup directories using .gitkeep files * .gitignore: - ignore files in the three backup directories - ensure that .gitkeep files are not ignored
-rw-r--r--.gitignore8
-rw-r--r--backup/backup/.gitkeep0
-rw-r--r--backup/swap/.gitkeep0
-rw-r--r--backup/undo/.gitkeep0
4 files changed, 8 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 4575364..fefcc04 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,5 +2,13 @@
.VimballRecord
.netrwhist
+# Swap & backup file storage local to ~/.vim
+/backup/backup/**
+/backup/swap/**
+/backup/undo/**
+
# Custom
/projects/
+
+# Defaults
+!.gitkeep
diff --git a/backup/backup/.gitkeep b/backup/backup/.gitkeep
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/backup/backup/.gitkeep
diff --git a/backup/swap/.gitkeep b/backup/swap/.gitkeep
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/backup/swap/.gitkeep
diff --git a/backup/undo/.gitkeep b/backup/undo/.gitkeep
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/backup/undo/.gitkeep