From a9573e1cf07b41d1439ac143fbdd933c9d1ce1cf Mon Sep 17 00:00:00 2001 From: Vladan Popovic Date: Mon, 30 Sep 2024 00:36:17 +0200 Subject: [PATCH] .gitconfig and .gitignore-global --- git/.gitconfig | 16 ++++++++++++++++ git/.gitignore-global | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 git/.gitconfig create mode 100644 git/.gitignore-global diff --git a/git/.gitconfig b/git/.gitconfig new file mode 100644 index 0000000..49d02ca --- /dev/null +++ b/git/.gitconfig @@ -0,0 +1,16 @@ +[user] + email = vladanovic@gmail.com + name = Vladan Popovic +[core] + excludesfile = /home/vladan/.gitignore-global + editor = nvim +[pull] + rebase = true +[init] + defaultBranch = main +[daemon] + receivepack = true +[credential] + helper = store +[rebase] + autosquash = true diff --git a/git/.gitignore-global b/git/.gitignore-global new file mode 100644 index 0000000..2594b12 --- /dev/null +++ b/git/.gitignore-global @@ -0,0 +1,32 @@ +# Vim tmp. +*~ +*.sw? + +# Emacs tmp. +\#*\# +.\#* + +# Vim / Emacs tags. +*tags +TAGS + +*.db +*.sqlite3 + +# Cargo. +target/ + +# Exercism creates a repo per exercise. +**/.exercism/* + +# Python. +__pycache__/ +*.py[oc] +build/ +dist/ +wheels/ +*.egg-info +.venv + +# Sphinx. +_build/