diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-07-07 18:36:38 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-07-07 18:36:38 +0200 |
commit | ef03edb4631900c05131c811631662c612a23072 (patch) | |
tree | cd0dd65f79dd1a9b58550dfa6f6b9f8cdc72236e /.gitignore | |
parent | Fix (diff) | |
download | joe-www-ef03edb4631900c05131c811631662c612a23072.tar.gz joe-www-ef03edb4631900c05131c811631662c612a23072.tar.bz2 joe-www-ef03edb4631900c05131c811631662c612a23072.tar.xz joe-www-ef03edb4631900c05131c811631662c612a23072.tar.zst joe-www-ef03edb4631900c05131c811631662c612a23072.zip |
Added .gitignore
Diffstat (limited to '')
-rw-r--r-- | .gitignore | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2155c14 --- /dev/null +++ b/.gitignore @@ -0,0 +1,90 @@ + +# Created by https://www.toptal.com/developers/gitignore/api/emacs,linux,vim +# Edit at https://www.toptal.com/developers/gitignore?templates=emacs,linux,vim + +### 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* + +### Vim ### +# Swap +[._]*.s[a-v][a-z] +!*.svg # comment out if you don't need vector files +[._]*.sw[a-p] +[._]s[a-rt-v][a-z] +[._]ss[a-gi-z] +[._]sw[a-p] + +# Session +Session.vim +Sessionx.vim + +# Temporary +.netrwhist +# Auto-generated tag files +tags +# Persistent undo +[._]*.un~ + +# End of https://www.toptal.com/developers/gitignore/api/emacs,linux,vim |