From 7770508c5976698ed95880c0b1ac6971636e813d Mon Sep 17 00:00:00 2001 From: jefflance Date: Fri, 29 Jun 2018 01:45:39 +0200 Subject: [PATCH] Update. --- confs/gitignore.global | 90 ++++++++++++++++++++++++++++++ libs/configs/gitignore.global.yaml | 6 ++ 2 files changed, 96 insertions(+) create mode 100644 confs/gitignore.global create mode 100644 libs/configs/gitignore.global.yaml 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