diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2019-11-19 10:38:19 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2019-11-19 10:38:19 +0100 |
commit | d415702f5974e091911faf0200c6a68d9c932069 (patch) | |
tree | 99d4f69bd5024a0a8b8a06a28ff268ff8b49cfff /.gitignore | |
parent | Cyan to yellow in review menu (diff) | |
download | arch-installer-d415702f5974e091911faf0200c6a68d9c932069.tar.gz arch-installer-d415702f5974e091911faf0200c6a68d9c932069.tar.bz2 arch-installer-d415702f5974e091911faf0200c6a68d9c932069.tar.xz arch-installer-d415702f5974e091911faf0200c6a68d9c932069.tar.zst arch-installer-d415702f5974e091911faf0200c6a68d9c932069.zip |
Added gitignore, better package installing organisation
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2379478 --- /dev/null +++ b/.gitignore @@ -0,0 +1,69 @@ +# Created by https://www.gitignore.io/api/linux,emacs +# Edit at https://www.gitignore.io/?templates=linux,emacs + +### 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 + +# network security +/network-security.data + + +### Linux ### + +# temporary files which can be created if a process still has a handle open of a deleted file +.fuse_hidden* + +# KDE directory preferences +.directory + +# Linux trash folder which might appear on any partition or disk +.Trash-* + +# .nfs files are created when an open file is removed but is still being accessed +.nfs* + +# End of https://www.gitignore.io/api/linux,emacs
\ No newline at end of file |