mirror of
https://github.com/ItsDrike/nixdots
synced 2025-06-30 08:10:42 +00:00
Add git configuration
This commit is contained in:
parent
a9cdf25a57
commit
329f48882e
9 changed files with 223 additions and 0 deletions
39
home/programs/terminal/tools/git/ignores.nix
Normal file
39
home/programs/terminal/tools/git/ignores.nix
Normal file
|
@ -0,0 +1,39 @@
|
|||
{
|
||||
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"
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue