1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- # Created by https://www.gitignore.io/api/git,zsh,visualstudiocode
- # Edit at https://www.gitignore.io/?templates=git,zsh,visualstudiocode
-
- ### Git ###
- # Created by git for backups. To disable backups in Git:
- # $ git config --global mergetool.keepBackup false
- *.orig
-
- # Created by git when using merge tools for conflicts
- *.BACKUP.*
- *.BASE.*
- *.LOCAL.*
- *.REMOTE.*
- *_BACKUP_*.txt
- *_BASE_*.txt
- *_LOCAL_*.txt
- *_REMOTE_*.txt
-
- ### VisualStudioCode ###
- .vscode/*
- !.vscode/settings.json
- !.vscode/tasks.json
- !.vscode/launch.json
- !.vscode/extensions.json
-
- ### VisualStudioCode Patch ###
- # Ignore all local history of files
- .history
-
- ### Zsh ###
- # Zsh compiled script + zrecompile backup
- *.zwc
- *.zwc.old
-
- # Zsh completion-optimization dumpfile
- *zcompdump*
-
- # Zsh zcalc history
- .zcalc_history
-
- # A popular plugin manager's files
- ._zplugin
- .zplugin_lstupd
-
- # zdharma/zshelldoc tool's files
- zsdoc/data
-
- # robbyrussell/oh-my-zsh/plugins/per-directory-history plugin's files
- # (when set-up to store the history in the local directory)
- .directory_history
-
- # MichaelAquilina/zsh-autoswitch-virtualenv plugin's files
- # (for Zsh plugins using Python)
- .venv
-
- # Zunit tests' output
- /tests/_output/*
- !/tests/_output/.gitkeep
-
- ### macOS ###
- # General
- .DS_Store
- .AppleDouble
- .LSOverride
-
- # Icon must end with two \r
- Icon
-
- # Thumbnails
- ._*
-
- # Files that might appear in the root of a volume
- .DocumentRevisions-V100
- .fseventsd
- .Spotlight-V100
- .TemporaryItems
- .Trashes
- .VolumeIcon.icns
- .com.apple.timemachine.donotpresent
-
- # Directories potentially created on remote AFP share
- .AppleDB
- .AppleDesktop
- Network Trash Folder
- Temporary Items
- .apdisk
-
- # End of https://www.gitignore.io/api/git,zsh,visualstudiocode
-
- ### AWSCLI ###
- # Credentials
- .aws/credentials
-
- # Config
- .aws/config
|