Add git configuration

This commit is contained in:
ItsDrike 2024-04-04 20:16:56 +02:00
parent a9cdf25a57
commit 329f48882e
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
9 changed files with 223 additions and 0 deletions

View file

@ -0,0 +1,39 @@
{
programs.git.ignores = [
# Python:
"__pycache__/"
"*.py[cod]"
"$py.class"
"venv"
".venv"
".pytest_cache"
".mypy_cache"
# C
".tags"
"tags"
"*~"
"*.o"
"*.so"
"*.cmake"
"CmakeCache.txt"
"CMakeFiles/"
"cmake-build-debug/"
"compile_commands.json"
".ccls*"
# JavaScript + TypeScript
"node_modules/"
# Editors
".vscode/"
".idea/"
".replit"
".spyproject/"
".spyderproject"
".neoconf.json"
# Custom attributes for folders on Mac OS
".DS_Store"
];
}