From c19898373f9267905826c684d53bb59aa0824d22 Mon Sep 17 00:00:00 2001 From: Christian Colglazier Date: Sun, 18 Feb 2024 10:01:35 -0500 Subject: [PATCH] Global gitignore --- git/.gitconfig | 1 + git/.gitignore | 63 ++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 64 insertions(+) create mode 100644 git/.gitignore diff --git a/git/.gitconfig b/git/.gitconfig index 712f80f..42e6666 100644 --- a/git/.gitconfig +++ b/git/.gitconfig @@ -3,6 +3,7 @@ email = christian@cacolglazier.com [core] editor = emacs + excludesFile = ~/.gitignore [rerere] enabled = true [column] diff --git a/git/.gitignore b/git/.gitignore new file mode 100644 index 0000000..5b3cf3a --- /dev/null +++ b/git/.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