diff options
author | Franck Cuny <franck@fcuny.net> | 2022-02-09 19:22:13 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-02-09 19:22:13 -0800 |
commit | a0c24fbbf0232c3af8ff8eeea64f17e345e0a73a (patch) | |
tree | 8f2f6354eaca7a2b4a9f6f70703f1d95022188f9 | |
parent | home-manager: fix zsh config (diff) | |
download | world-a0c24fbbf0232c3af8ff8eeea64f17e345e0a73a.tar.gz |
git: update list of things to ignore
Diffstat (limited to '')
-rw-r--r-- | users/fcuny/git.nix | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/users/fcuny/git.nix b/users/fcuny/git.nix index adaf626..f7aeb27 100644 --- a/users/fcuny/git.nix +++ b/users/fcuny/git.nix @@ -15,6 +15,26 @@ }; userName = "Franck Cuny"; userEmail = "franck@fcuny.net"; - ignores = [ "*.o" "*.pyc" "*.pyo" "*.elc" "*~" ".direnv/*" "\\#*\\#" ".\\#" ]; + ignores = [ + "*.elc" + "*.iml" + "*.o" + "*.pyc" + "*.pyo" + "*pyc" + "*~" + ".DS_Store" + ".\\#" + ".dir-locals.el" + ".direnv/*" + ".idea" + ".projectile" + ".pytest_cache/" + "/env/*" + "Icon" + "TAGS" + "\\#*\\#" + "tags" + ]; }; } |