chore: add .gitignore file to project

The .gitignore file is added to the project to specify which files and directories should be ignored by Git. This helps to prevent unnecessary files from being tracked and committed to the repository. The .gitignore file includes a rule to ignore everything except for the .gitignore file itself and the .tmux.conf file.
This commit is contained in:
David Ibia
2024-01-15 16:25:42 +01:00
commit aa8b471062

6
.gitignore vendored Normal file
View File

@@ -0,0 +1,6 @@
# Ignore Everything
/*
# Except for these files
!.gitignore
!/.tmux.conf