From b49f8e3dffd8828a6e7db2939470ba7eafe10cda Mon Sep 17 00:00:00 2001 From: Fabio Scotto di Santolo Date: Sat, 20 Jul 2024 19:19:40 +0200 Subject: [PATCH] Fix .gitignore --- .gitignore | 270 ++++++++++++++++++ .../__pycache__/__init__.cpython-312.pyc | Bin 154 -> 0 bytes .../__pycache__/dracula.cpython-312.pyc | Bin 6975 -> 0 bytes 3 files changed, 270 insertions(+) delete mode 100644 ranger/.config/ranger/colorschemes/__pycache__/__init__.cpython-312.pyc delete mode 100644 ranger/.config/ranger/colorschemes/__pycache__/dracula.cpython-312.pyc diff --git a/.gitignore b/.gitignore index 9c11390..e349900 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,271 @@ nvim/dot-config/nvim/lazy-lock.json + +# Created by https://www.toptal.com/developers/gitignore/api/perl,python,ruby +# Edit at https://www.toptal.com/developers/gitignore?templates=perl,python,ruby + +### Perl ### +!Build/ +.last_cover_stats +/META.yml +/META.json +/MYMETA.* +*.o +*.pm.tdy +*.bs + +# Devel::Cover +cover_db/ + +# Devel::NYTProf +nytprof.out + +# Dist::Zilla +/.build/ + +# Module::Build +_build/ +Build +Build.bat + +# Module::Install +inc/ + +# ExtUtils::MakeMaker +/blib/ +/_eumm/ +/*.gz +/Makefile +/Makefile.old +/MANIFEST.bak +/pm_to_blib +/*.zip + +### Python ### +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# 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/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ +cover/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +.pybuilder/ +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +# For a library or package, you might want to ignore these files since the code is +# intended to run in multiple environments; otherwise, check them in: +# .python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# poetry +# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. +# This is especially recommended for binary packages to ensure reproducibility, and is more +# commonly ignored for libraries. +# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control +#poetry.lock + +# pdm +# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. +#pdm.lock +# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it +# in version control. +# https://pdm.fming.dev/#use-with-ide +.pdm.toml + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +# pytype static type analyzer +.pytype/ + +# Cython debug symbols +cython_debug/ + +# PyCharm +# JetBrains specific template is maintained in a separate JetBrains.gitignore that can +# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore +# and can be added to the global gitignore or merged into this file. For a more nuclear +# option (not recommended) you can uncomment the following to ignore the entire idea folder. +#.idea/ + +### Python Patch ### +# Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration +poetry.toml + +# ruff +.ruff_cache/ + +# LSP config files +pyrightconfig.json + +### Ruby ### +*.gem +*.rbc +/.config +/coverage/ +/InstalledFiles +/pkg/ +/spec/reports/ +/spec/examples.txt +/test/tmp/ +/test/version_tmp/ +/tmp/ + +# Used by dotenv library to load environment variables. +# .env + +# Ignore Byebug command history file. +.byebug_history + +## Specific to RubyMotion: +.dat* +.repl_history +*.bridgesupport +build-iPhoneOS/ +build-iPhoneSimulator/ + +## Specific to RubyMotion (use of CocoaPods): +# +# We recommend against adding the Pods directory to your .gitignore. However +# you should judge for yourself, the pros and cons are mentioned at: +# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control +# vendor/Pods/ + +## Documentation cache and generated files: +/.yardoc/ +/_yardoc/ +/doc/ +/rdoc/ + +## Environment normalization: +/.bundle/ +/vendor/bundle +/lib/bundler/man/ + +# for a library or gem, you might want to ignore these files since the code is +# intended to run in multiple environments; otherwise, check them in: +# Gemfile.lock +# .ruby-version +# .ruby-gemset + +# unless supporting rvm < 1.11.0 or doing something fancy, ignore this: +.rvmrc + +# Used by RuboCop. Remote config files pulled in from inherit_from directive. +# .rubocop-https?--* + +# End of https://www.toptal.com/developers/gitignore/api/perl,python,ruby diff --git a/ranger/.config/ranger/colorschemes/__pycache__/__init__.cpython-312.pyc b/ranger/.config/ranger/colorschemes/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 6c0487eb33274302cc422311c41e36564a24ba6e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 154 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 CE4N4h