dotemacs

My Emacs configuration
git clone git://git.entf.net/dotemacs
Log | Files | Refs | LICENSE

.dir-locals.el (718B)


      1 ;;; Directory Local Variables
      2 ;;; For more information see (info "(emacs) Directory Variables")
      3 
      4 ((nil
      5   (sentence-end-double-space)
      6   (checkdoc-arguments-in-order-flag)
      7   (checkdoc-verb-check-experimental-flag)
      8   (checkdoc-force-docstrings-flag)
      9   ;; To use the bug-reference stuff, do:
     10   ;;     (add-hook 'text-mode-hook #'bug-reference-mode)
     11   ;;     (add-hook 'prog-mode-hook #'bug-reference-prog-mode)
     12   (bug-reference-bug-regexp . "#\\(?2:[[:digit:]]+\\)")
     13   (bug-reference-url-format . "https://github.com/vspinu/sesman/issues/%s"))
     14  (emacs-lisp-mode
     15   (eval . (add-hook 'before-save-hook 'delete-trailing-whitespace nil t))
     16   (indent-tabs-mode)
     17   (fill-column . 80)
     18   (emacs-lisp-docstring-fill-column . 80)))