diff options
author | andreas128 <Andreas> | 2017-08-05 22:10:35 +0100 |
---|---|---|
committer | andreas128 <Andreas> | 2017-08-05 22:10:35 +0100 |
commit | 74846d047d1dfdc397222e7f1e8ab0c8e86a0af4 (patch) | |
tree | a4dbabec5104cd1647b772175264d038955d0035 | |
parent | 38f171903a897d4b77b8d54d9cac772ccb8791c2 (diff) | |
download | dabmod-74846d047d1dfdc397222e7f1e8ab0c8e86a0af4.tar.gz dabmod-74846d047d1dfdc397222e7f1e8ab0c8e86a0af4.tar.bz2 dabmod-74846d047d1dfdc397222e7f1e8ab0c8e86a0af4.zip |
Add python, vim config to .gitignore
-rw-r--r-- | .gitignore | 119 |
1 files changed, 119 insertions, 0 deletions
@@ -19,3 +19,122 @@ odr-dabmod .*.swp *~ + + +# Created by https://www.gitignore.io/api/vim,python + +### Python ### +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +env/ +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*,cover +.hypothesis/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# pyenv +.python-version + +# celery beat schedule file +celerybeat-schedule + +# SageMath parsed files +*.sage.py + +# dotenv +.env + +# virtualenv +.venv +venv/ +ENV/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +### Vim ### +# swap +[._]*.s[a-v][a-z] +[._]*.sw[a-p] +[._]s[a-v][a-z] +[._]sw[a-p] +# session +Session.vim +# temporary +.netrwhist +*~ +# auto-generated tag files +tags + +# End of https://www.gitignore.io/api/vim,python |