From 231f70935f3e0f1535a870cd20f201ee2a3a921c Mon Sep 17 00:00:00 2001 From: maze Date: Thu, 12 Oct 2023 00:37:06 +0200 Subject: [PATCH] Ignore Jekyll cache, gemfile and vim files Ignore additional Jekyll cache files we missed Ignore Gemfile changes unless explicitly added to commits Ignore files generated by Vim (Maze is a nerd) --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index 77fa16ae..f78effed 100644 --- a/.gitignore +++ b/.gitignore @@ -2,16 +2,21 @@ CNAME # Bundler / Ruby / Jekyll +Gemfile.lock .bundle/config vendor/bundle/ # Jekyll build output _site/ .sass-cache +docs/.jekyll-cache docs/.jekyll-metadata # VSCode user-specific files .vscode/settings.json +# Vim <3 +*.swp + # MacOS metadata file **/.DS_Store