diff options
author | steew <steew@noreply.dev.steew.cyou> | 2021-11-03 22:28:58 +0000 |
---|---|---|
committer | steew <steew@noreply.dev.steew.cyou> | 2021-11-03 22:28:58 +0000 |
commit | 27462e85046b14a0bb5209159a49447d17cbe4a8 (patch) | |
tree | 127d440e0f11b424d0ef1f29c74e1770d9686039 /.gitignore | |
download | rpncalc-27462e85046b14a0bb5209159a49447d17cbe4a8.tar.gz |
Initial commit
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c0df46a --- /dev/null +++ b/.gitignore @@ -0,0 +1,51 @@ +# ---> 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 + + |