diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2019-11-14 01:21:52 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2019-11-14 01:21:52 +0100 |
commit | 224b9bbaa034e92e4086579da0f9dfc8ee5e0696 (patch) | |
tree | bbd4283ffb70c0d5f01e826e39dd30ac3e754252 /.gitignore | |
parent | dash ~> sh (diff) | |
download | lowbat-gnu-224b9bbaa034e92e4086579da0f9dfc8ee5e0696.tar.gz lowbat-gnu-224b9bbaa034e92e4086579da0f9dfc8ee5e0696.tar.bz2 lowbat-gnu-224b9bbaa034e92e4086579da0f9dfc8ee5e0696.tar.xz lowbat-gnu-224b9bbaa034e92e4086579da0f9dfc8ee5e0696.tar.zst lowbat-gnu-224b9bbaa034e92e4086579da0f9dfc8ee5e0696.zip |
Added .gitignore, README
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e746107 --- /dev/null +++ b/.gitignore @@ -0,0 +1,99 @@ +# Created by https://www.gitignore.io/api/zsh,linux,emacs +# Edit at https://www.gitignore.io/?templates=zsh,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* + +### Zsh ### +# Zsh compiled script + zrecompile backup +*.zwc +*.zwc.old + +# Zsh completion-optimization dumpfile +*zcompdump* + +# Zsh zcalc history +.zcalc_history + +# A popular plugin manager's files +._zplugin +.zplugin_lstupd + +# zdharma/zshelldoc tool's files +zsdoc/data + +# robbyrussell/oh-my-zsh/plugins/per-directory-history plugin's files +# (when set-up to store the history in the local directory) +.directory_history + +# MichaelAquilina/zsh-autoswitch-virtualenv plugin's files +# (for Zsh plugins using Python) +.venv + +# Zunit tests' output +/tests/_output/* +!/tests/_output/.gitkeep + +# End of https://www.gitignore.io/api/zsh,linux,emacs
\ No newline at end of file |