Track git configs
authorSiraaj Khandkar <siraaj@khandkar.net>
Fri, 14 Jan 2022 21:47:10 +0000 (16:47 -0500)
committerSiraaj Khandkar <siraaj@khandkar.net>
Fri, 14 Jan 2022 21:47:10 +0000 (16:47 -0500)
home/.gitconfig [new file with mode: 0644]
home/.gitignore_global [new file with mode: 0644]

diff --git a/home/.gitconfig b/home/.gitconfig
new file mode 100644 (file)
index 0000000..0fb589e
--- /dev/null
@@ -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 (file)
index 0000000..a950742
--- /dev/null
@@ -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/
This page took 0.021474 seconds and 4 git commands to generate.