update
This commit is contained in:
parent
cf15b43064
commit
5ac95168c7
50
.gitignore
vendored
50
.gitignore
vendored
@ -2,16 +2,47 @@
|
|||||||
# Ignore these files globally in this repo.
|
# Ignore these files globally in this repo.
|
||||||
#
|
#
|
||||||
|
|
||||||
### old files ###
|
### Old files ###
|
||||||
old/
|
old/
|
||||||
|
|
||||||
### log files ###
|
### Log files ###
|
||||||
*.log
|
*.log
|
||||||
|
|
||||||
### oh-my-zsh ###
|
### Zsh ###
|
||||||
zsh/oh-my-zsh/custom/*
|
# Zsh compiled script + zrecompile backup
|
||||||
*.zsh.zwc
|
*.zwc
|
||||||
*.zsh.zwc.old
|
*.zwc.old
|
||||||
|
|
||||||
|
# Zsh completion-optimization dumpfile
|
||||||
|
*zcompdump*
|
||||||
|
|
||||||
|
# Zsh history
|
||||||
|
.zsh_history
|
||||||
|
|
||||||
|
# Zsh sessions
|
||||||
|
.zsh_sessions
|
||||||
|
|
||||||
|
# Zsh zcalc history
|
||||||
|
.zcalc_history
|
||||||
|
|
||||||
|
# A popular plugin manager's files
|
||||||
|
._zinit
|
||||||
|
.zinit_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
|
||||||
|
|
||||||
### Emacs ###
|
### Emacs ###
|
||||||
# -*- mode: gitignore; -*-
|
# -*- mode: gitignore; -*-
|
||||||
@ -95,10 +126,15 @@ tags
|
|||||||
[._]*.un~
|
[._]*.un~
|
||||||
|
|
||||||
### Fonts ###
|
### Fonts ###
|
||||||
# fonts/*/*.uuid
|
|
||||||
*.uuid
|
*.uuid
|
||||||
|
|
||||||
### astroid ###
|
### astroid ###
|
||||||
conf.d/astroid/searches
|
conf.d/astroid/searches
|
||||||
|
|
||||||
|
### Python ###
|
||||||
|
# Byte-compiled / optimized / DLL files
|
||||||
|
__pycache__/
|
||||||
|
*.py[cod]
|
||||||
|
*$py.class
|
||||||
|
|
||||||
# End of https://www.gitignore.io/api
|
# End of https://www.gitignore.io/api
|
||||||
|
Loading…
Reference in New Issue
Block a user