From 1c09f1f10bda30b9b6ecd233abf314a8980b67f6 Mon Sep 17 00:00:00 2001 From: pheuberger Date: Wed, 29 Nov 2023 13:32:57 +0200 Subject: [PATCH] chore: add editor ignore section to `.gitignore` Some vim plugins like Gutentags (https://github.com/ludovicchabant/vim-gutentags) write `tags` files into the project directory to keep track of symbols. This file needs to be ignored by git because it should never be committed. --- .gitignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index cc40c2b..a5bac11 100644 --- a/.gitignore +++ b/.gitignore @@ -107,4 +107,7 @@ cache # DS Store *./DS_Store -.DS_Store \ No newline at end of file +.DS_Store + +# Editor files +tags