joestar

Joe's Own Editor emulation layer for Emacs.
Log | Files | Refs | LICENSE

.gitignore (616B)


      1 # Edit at https://www.gitignore.io/?templates=emacs
      2 
      3 ### Emacs ###
      4 # -*- mode: gitignore; -*-
      5 *~
      6 \#*\#
      7 /.emacs.desktop
      8 /.emacs.desktop.lock
      9 *.elc
     10 auto-save-list
     11 tramp
     12 .\#*
     13 
     14 # Org-mode
     15 .org-id-locations
     16 *_archive
     17 
     18 # flymake-mode
     19 *_flymake.*
     20 
     21 # eshell files
     22 /eshell/history
     23 /eshell/lastdir
     24 
     25 # elpa packages
     26 /elpa/
     27 
     28 # reftex files
     29 *.rel
     30 
     31 # AUCTeX auto folder
     32 /auto/
     33 
     34 # cask packages
     35 .cask/
     36 dist/
     37 
     38 # Flycheck
     39 flycheck_*.el
     40 
     41 # server auth directory
     42 /server/
     43 
     44 # projectiles files
     45 .projectile
     46 
     47 # directory configuration
     48 .dir-locals.el
     49 
     50 # network security
     51 /network-security.data
     52 
     53 
     54 # End of https://www.gitignore.io/api/emacs