From c548e11abcf30a08357a321144c9213dc060373c Mon Sep 17 00:00:00 2001 From: Alex Karle Date: Sat, 29 Dec 2018 01:21:58 -0500 Subject: [PATCH] vim: update .gitignore, delete .gitkeep files I had been using .gitkeep files to hold down the pack/mine and pack/plugins directories, but now that there are submodules, this isn't necessary. Also, it seems that the best way to go about submodules is still gitignore the whole directory (as I add plugins manually based on the development at hand (and may not want some plugins as part of my install everywhere)). Note that this means submodules need to be added with '-f'. --- vim/.gitignore | 3 +-- vim/pack/mine/.gitkeep | 0 vim/pack/plugins/.gitkeep | 0 3 files changed, 1 insertion(+), 2 deletions(-) delete mode 100644 vim/pack/mine/.gitkeep delete mode 100644 vim/pack/plugins/.gitkeep diff --git a/vim/.gitignore b/vim/.gitignore index 867413b..877403f 100644 --- a/vim/.gitignore +++ b/vim/.gitignore @@ -7,9 +7,8 @@ undo/ # Ignore plugin artifacts .netrwhist -# Ignore plugins (TODO: consider submodules) +# Ignore plugins pack/ -!pack/mine/start/gruvbox # Ignore tags tags diff --git a/vim/pack/mine/.gitkeep b/vim/pack/mine/.gitkeep deleted file mode 100644 index e69de29..0000000 --- a/vim/pack/mine/.gitkeep +++ /dev/null diff --git a/vim/pack/plugins/.gitkeep b/vim/pack/plugins/.gitkeep deleted file mode 100644 index e69de29..0000000 --- a/vim/pack/plugins/.gitkeep +++ /dev/null -- libgit2 0.28.4