39 lines
694 B
Plaintext
39 lines
694 B
Plaintext
# Ignore backup files
|
|
*.bkp
|
|
*.bak
|
|
|
|
# Ignore all gitignores in this repo but this one
|
|
.gitignore
|
|
!/.gitignore
|
|
|
|
# Ignore files generated by rejected patches etc.
|
|
*.rej
|
|
*.orig
|
|
|
|
# Ignore installation backups
|
|
/existing-*.tar.gz
|
|
|
|
# Ignore all VSCodium files but the settings.json
|
|
/.config/VSCodium
|
|
!/.config/VSCodium/User/settings.json
|
|
|
|
# Ignore private git config
|
|
/.config/git/user.config
|
|
|
|
/.config/vim/.netrwhist
|
|
|
|
/.config/zsh/.zcompdump
|
|
/.config/zsh/.zcompcache
|
|
|
|
/.config/ranger/bookmarks
|
|
/.config/ranger/history
|
|
|
|
/.config/git/gitk
|
|
|
|
# Ignore symlink to meta/envrc in repo root (created in installation)
|
|
/.envrc
|
|
|
|
# Do not commit any files by accident that might land in there
|
|
/.ssh/*
|
|
!/.ssh/config
|