From 25d152f34484b171bac161ac516e88b0fd01c0dc Mon Sep 17 00:00:00 2001 From: alex Date: Tue, 18 Jan 2022 18:22:56 -0500 Subject: [PATCH] git: global ignore --- apply.sh | 3 ++ git/ignore | 83 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 86 insertions(+) create mode 100644 git/ignore diff --git a/apply.sh b/apply.sh index a1c4633..1195300 100755 --- a/apply.sh +++ b/apply.sh @@ -11,6 +11,9 @@ fi echo "Copying alacritty config..." rsync -a alacritty/ "$CONFIG_DIR/alacritty" +echo "Copying git config..." +rsync -a git/ "$CONFIG_DIR/git" + echo "Copying picom config..." rsync -a picom/ "$CONFIG_DIR/picom" diff --git a/git/ignore b/git/ignore new file mode 100644 index 0000000..f1f7b60 --- /dev/null +++ b/git/ignore @@ -0,0 +1,83 @@ +# -*- 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 + +# 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 + +# OS generated files # +###################### +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db \ No newline at end of file