diff options
author | Alen <alen@dotfiles.xyz> | 2023-09-09 16:37:16 +0400 |
---|---|---|
committer | Alen <alen@dotfiles.xyz> | 2023-09-09 16:37:16 +0400 |
commit | 4936224263dcbb3e27671d3f88c7b558813f9575 (patch) | |
tree | 3c12c0df12078287e173fbd8631b58dd5160309f /dot_gitignore_global | |
parent | 45bc2e16f335035a114406bea7d8ef5129a775ac (diff) |
Add .gitconfig
Diffstat (limited to 'dot_gitignore_global')
-rw-r--r-- | dot_gitignore_global | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/dot_gitignore_global b/dot_gitignore_global new file mode 100644 index 0000000..cdc48f2 --- /dev/null +++ b/dot_gitignore_global @@ -0,0 +1,46 @@ +# OS things +.DS_Store +.DS_Store? +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db +.snapshots/ + +# Temporary data files +*.pkl +*.temp +*.sqlite +*.db + +# Commonly used dev files +/_ipython.py +/.env + +# IDE +/.idea/ +/.vscode/ + +# Basic Python stuff for one-off doodles +__pycache__/ +/venv/ +.py[cod] + +# Basic node stuff for one-off doodles +/node_modules/ + +# Compiled files +*.com +*.class +*.dll +*.exe +*.o +*.so + +# Archives +*.7z +*.dmg +*.gz +*.rar +*.tar +*.zip |