diff --git a/confs/gitignore.global b/confs/gitignore.global new file mode 100644 index 0000000..77ac480 --- /dev/null +++ b/confs/gitignore.global @@ -0,0 +1,90 @@ +# +# Ignore these files globally in this repo. +# + +# Emacs # +######### +*~ +\#*\# +/.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 + + +# Compiled source # +################### +*.com +*.class +*.dll +*.exe +*.o +*.so + +# Packages # +############ +# it's better to unpack these files and commit the raw source +# git has its own built in compression methods +*.7z +*.dmg +*.gz +*.iso +*.jar +*.rar +*.tar +*.zip + +# Logs and databases # +###################### +*.log +*.sql +*.sqlite +*.uuid + +# OS generated files # +###################### +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db diff --git a/libs/configs/gitignore.global.yaml b/libs/configs/gitignore.global.yaml new file mode 100644 index 0000000..a624482 --- /dev/null +++ b/libs/configs/gitignore.global.yaml @@ -0,0 +1,6 @@ +- link: + ~/.gitignore.global: confs/gitignore.global + +- shell: + - + command: git config --global core.excludesfile ~/.gitignore.global