From 75856335f19c5b9388050e26c2c5a34a05f8aa95 Mon Sep 17 00:00:00 2001
From: bronsen <kontakt+gitcommit@nrrd.de>
Date: Fri, 28 Feb 2025 08:15:05 +0100
Subject: [PATCH] initial commit with populated .gitignore

---
 .gitignore | 38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)
 create mode 100644 .gitignore

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..a0d459e
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,38 @@
+# Created by https://www.toptal.com/developers/gitignore/api/ansible,vim,vagrant
+# Edit at https://www.toptal.com/developers/gitignore?templates=ansible,vim,vagrant
+
+### Ansible ###
+*.retry
+
+### Vagrant ###
+# General
+.vagrant/
+
+# Log files (if you are creating logs in debug mode, uncomment this)
+# *.log
+
+### Vagrant Patch ###
+*.box
+
+### Vim ###
+# Swap
+[._]*.s[a-v][a-z]
+!*.svg  # comment out if you don't need vector files
+[._]*.sw[a-p]
+[._]s[a-rt-v][a-z]
+[._]ss[a-gi-z]
+[._]sw[a-p]
+
+# Session
+Session.vim
+Sessionx.vim
+
+# Temporary
+.netrwhist
+*~
+# Auto-generated tag files
+tags
+# Persistent undo
+[._]*.un~
+
+# End of https://www.toptal.com/developers/gitignore/api/ansible,vim,vagrant