diff options
author | Alen <alen@dotfiles.xyz> | 2023-09-11 23:15:16 +0400 |
---|---|---|
committer | Alen <alen@dotfiles.xyz> | 2023-09-11 23:15:16 +0400 |
commit | 69a73dfa4fee36f4a8959bc34ed19cdc49df66b5 (patch) | |
tree | 8b531817af019f9c238d459dc47e36041e429d36 /dot_ignore | |
parent | c4db33b3953a078481414e7a377a299cd9a068a8 (diff) |
Add basic .ignore with relevant subset from .gitignore_global
Diffstat (limited to 'dot_ignore')
-rw-r--r-- | dot_ignore | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/dot_ignore b/dot_ignore new file mode 100644 index 0000000..3e00426 --- /dev/null +++ b/dot_ignore @@ -0,0 +1,24 @@ +# OS things +.DS_Store +.DS_Store? +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db +.snapshots/ + +# Temporary data files +*.pkl + +# Basic Python stuff for one-off doodles +__pycache__/ +venv/ +*.py[cod] + +# Basic node stuff for one-off doodles +node_modules/ + +# macOS system-y folders +Applications*/ +Library/ +Parallels/ |