diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-06-09 18:37:25 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-06-09 18:37:25 +0200 |
commit | 17a87ec67988781d14f7c2a9d8242e7124d42d55 (patch) | |
tree | 848354b4640d90204e431c59b2f48d31bb7b4c14 /.gitignore | |
download | dmenu-17a87ec67988781d14f7c2a9d8242e7124d42d55.tar.gz dmenu-17a87ec67988781d14f7c2a9d8242e7124d42d55.tar.bz2 dmenu-17a87ec67988781d14f7c2a9d8242e7124d42d55.tar.xz dmenu-17a87ec67988781d14f7c2a9d8242e7124d42d55.tar.zst dmenu-17a87ec67988781d14f7c2a9d8242e7124d42d55.zip |
First commit
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 129 |
1 files changed, 129 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8591e29 --- /dev/null +++ b/.gitignore @@ -0,0 +1,129 @@ +# Created by https://www.gitignore.io/api/c,linux,emacs +# Edit at https://www.gitignore.io/?templates=c,linux,emacs + +### C ### +# Prerequisites +*.d + +# Object files +*.o +*.ko +*.obj +*.elf + +# Linker output +*.ilk +*.map +*.exp + +# Precompiled Headers +*.gch +*.pch + +# Libraries +*.lib +*.a +*.la +*.lo + +# Shared objects (inc. Windows DLLs) +*.dll +*.so +*.so.* +*.dylib + +# Executables +*.exe +*.out +*.app +*.i*86 +*.x86_64 +*.hex + +# Debug files +*.dSYM/ +*.su +*.idb +*.pdb + +# Kernel Module Compile Results +*.mod* +*.cmd +.tmp_versions/ +modules.order +Module.symvers +Mkfile.old +dkms.conf + +### 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/c,linux,emacs + +*.diff +config.h +*.rej +*.orig +st |