dotfiles

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

commit b87f096174afcb3abfd49b7c58e5915ee59f160c (patch)
parent d27fb62c3debbbbbe73f68274c628d07e2f185a8
Author: Alex Karle <alex@alexkarle.com>
Date:   Tue, 23 Feb 2021 13:43:13 -0500

cleanup: Add back needed .gitignores from new install fallout

When I changed to use a .gitignore with a * pattern, I deleted the
.gitignores in the tree, which are now necessary (now that I'm using
a symlink farm approach).

Diffstat:
A.config/mutt/.gitignore | 9+++++++++
A.vim/.gitignore | 17+++++++++++++++++
2 files changed, 26 insertions(+), 0 deletions(-)

diff --git a/.config/mutt/.gitignore b/.config/mutt/.gitignore @@ -0,0 +1,9 @@ +# Not worth checking in encrypted passwords, as FastMail requires a different +# password for each client anyways... +*.gpg + +# Don't check in those emails ;) +cache + +# Local muttrc to determine which account to use, etc +muttrc.local diff --git a/.vim/.gitignore b/.vim/.gitignore @@ -0,0 +1,17 @@ +# Ignore files generated by editing +# Stuff like swp/ and undo/ really shouldn't be tracked +swp/ +spell/ +undo/ + +# Ignore plugin artifacts +.netrwhist + +# Ignore plugins +pack/ + +# Ignore tags +tags + +# Optional per-computer configuration +.vimrc.local