Skip to content

Commit

Permalink
chore: add editor ignore section to .gitignore
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
pheuberger committed Nov 29, 2023
1 parent 37a3f87 commit 1c09f1f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,7 @@ cache

# DS Store
*./DS_Store
.DS_Store
.DS_Store

# Editor files
tags

0 comments on commit 1c09f1f

Please sign in to comment.