nixdots/home/programs/terminal/tools/git/ignores.nix
2024-04-04 20:31:16 +02:00

40 lines
574 B
Nix

{
programs.git.ignores = [
# Python:
"__pycache__/"
"*.py[cod]"
"$py.class"
"venv"
".venv"
".pytest_cache"
".mypy_cache"
# C
".tags"
"tags"
"*~"
"*.o"
"*.so"
"*.cmake"
"CmakeCache.txt"
"CMakeFiles/"
"cmake-build-debug/"
"compile_commands.json"
".ccls*"
# JavaScript + TypeScript
"node_modules/"
# Editors
".vscode/"
".idea/"
".replit"
".spyproject/"
".spyderproject"
".neoconf.json"
# Custom attributes for folders on Mac OS
".DS_Store"
];
}