From 7af1572a011a62980ca75d66af35570b26845548 Mon Sep 17 00:00:00 2001 From: Siraaj Khandkar Date: Fri, 14 Jan 2022 16:47:10 -0500 Subject: [PATCH] Track git configs --- home/.gitconfig | 17 +++++++++++++++++ home/.gitignore_global | 29 +++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 home/.gitconfig create mode 100644 home/.gitignore_global diff --git a/home/.gitconfig b/home/.gitconfig new file mode 100644 index 0000000..0fb589e --- /dev/null +++ b/home/.gitconfig @@ -0,0 +1,17 @@ +[user] + name = Siraaj Khandkar + email = siraaj@khandkar.net +[core] + editor = /usr/bin/vim + excludesfile = ~/.gitignore_global +[color] + ui = true +[cola] + spellcheck = false +[init] + defaultBranch = master +#[filter "lfs"] +# required = true +# clean = git-lfs clean -- %f +# smudge = git-lfs smudge -- %f +# process = git-lfs filter-process diff --git a/home/.gitignore_global b/home/.gitignore_global new file mode 100644 index 0000000..a950742 --- /dev/null +++ b/home/.gitignore_global @@ -0,0 +1,29 @@ +## temporary alchemy +# Private notes +_notes.md +_notes/ + +# Temporary storage +_tmp/ +_wip/ + +## misc +# Mac filesystem metadata +.DS_Store + +# git-analysis +.git-analysis/ + +## editors +# Vim +*.swp +*.swo + +# Emacs +\#*# + +# Visual Studio Code +.vscode/ + +# F# plugin for VS Code +.ionide/ -- 2.20.1