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/