From 4383fedf3e040d7e970f0848d3cc0ad59368b7fd Mon Sep 17 00:00:00 2001 From: Tobias Reisinger Date: Wed, 17 Nov 2021 15:32:51 +0100 Subject: [PATCH] Add ignores to restic and git --- .config/git/ignore | 3 +++ .config/restic/ignore | 12 ++++++++---- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.config/git/ignore b/.config/git/ignore index 50cd868..6dfbcb9 100644 --- a/.config/git/ignore +++ b/.config/git/ignore @@ -18,6 +18,9 @@ latexmk_output/ # Javascript node_modules/ +# PHP +vendor/ + # Jupyter Notebooks .ipynb_checkpoints */.ipynb_checkpoints/* diff --git a/.config/restic/ignore b/.config/restic/ignore index 0fc1b52..1b3a4f8 100644 --- a/.config/restic/ignore +++ b/.config/restic/ignore @@ -1,15 +1,19 @@ +# Python venv/ *.pyc +# File stuff .DS_Store +# Vim Stuff *.swp *.swo -.syntastic_*_config - -.breakpoints - +# Latex latexmk_output/ +# Javascript node_modules/ + +# PHP +vendor/