dotfiles

$HOME is where the <3 is
git clone git://git.alexkarle.com/dotfiles.git
Log | Files | Refs | Submodules | README

commit c548e11abcf30a08357a321144c9213dc060373c (patch)
parent 7a5e417fdb08108479d87104e89887870dfcd24c
Author: Alex Karle <ajkarle@outlook.com>
Date:   Sat, 29 Dec 2018 01:21:58 -0500

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'.

Diffstat:
Mvim/.gitignore | 3+--
Dvim/pack/mine/.gitkeep | 0
Dvim/pack/plugins/.gitkeep | 0
3 files changed, 1 insertion(+), 2 deletions(-)

diff --git 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 diff --git a/vim/pack/plugins/.gitkeep b/vim/pack/plugins/.gitkeep