diff options
| author | Teddy Wing | 2014-04-30 21:03:29 -0400 |
|---|---|---|
| committer | Teddy Wing | 2014-04-30 21:03:29 -0400 |
| commit | ef30c20c778ea80e03cc9799e0da939a35936850 (patch) | |
| tree | 4b994867ebd8812987fbc0356c9320505ddf42cc | |
| parent | 4341bad253e4448b4e98845e7a3f9883816a80e4 (diff) | |
| download | dotvim-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-- | .gitignore | 8 | ||||
| -rw-r--r-- | backup/backup/.gitkeep | 0 | ||||
| -rw-r--r-- | backup/swap/.gitkeep | 0 | ||||
| -rw-r--r-- | backup/undo/.gitkeep | 0 |
4 files changed, 8 insertions, 0 deletions
@@ -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 |
