From d9c5dcbea42949e02ef57910aca0a404da43c4c1 Mon Sep 17 00:00:00 2001 From: Christian Colglazier Date: Fri, 7 Nov 2025 18:51:03 -0500 Subject: [PATCH] feat(git): add config --- dot_gitconfig | 14 ++++++++++++ dot_gitignore | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 77 insertions(+) create mode 100644 dot_gitconfig create mode 100644 dot_gitignore diff --git a/dot_gitconfig b/dot_gitconfig new file mode 100644 index 0000000..9027f84 --- /dev/null +++ b/dot_gitconfig @@ -0,0 +1,14 @@ +[user] + name = Christian Colglazier + email = christian@cacolglazier.com +[core] + editor = emacs + excludesFile = ~/.gitignore +[rerere] + enabled = true +[column] + ui = auto +[branch] + sort = -committerdate +[push] + autoSetupRemote = true diff --git a/dot_gitignore b/dot_gitignore new file mode 100644 index 0000000..5b3cf3a --- /dev/null +++ b/dot_gitignore @@ -0,0 +1,63 @@ +#### Emacs #### + +# -*- mode: gitignore; -*- +*~ +\#*\# +/.emacs.desktop +/.emacs.desktop.lock +*.elc +auto-save-list +tramp +.\#* + +# Org-mode +.org-id-locations +*_archive + +# flymake-mode +*_flymake.* + +# eshell files +/eshell/history +/eshell/lastdir + +# elpa packages +/elpa/ + +# reftex files +*.rel + +# AUCTeX auto folder +/auto/ + +# cask packages +.cask/ +dist/ + +# Flycheck +flycheck_*.el + +# server auth directory +/server/ + +# projectiles files +.projectile + +# directory configuration +.dir-locals.el + +#### vim #### +# Swap +[._]*.s[a-v][a-z] +[._]*.sw[a-p] +[._]s[a-v][a-z] +[._]sw[a-p] + +# Session +Session.vim + +# Temporary +.netrwhist +*~ +# Auto-generated tag files +tags \ No newline at end of file