config

Personal configuration.
git clone git://code.dwrz.net/config
Log | Files | Refs

.dir-locals.el (562B)


      1 ;;; Directory Local Variables            -*- no-byte-compile: t; -*-
      2 ;;; For more information see (info "(emacs) Directory Variables")
      3 
      4 ((nil
      5   (indent-tabs-mode . t)
      6   (tab-width . 8)
      7   (fill-column . 70)
      8   (sentence-end-double-space . t))
      9  (emacs-lisp-mode
     10   (indent-tabs-mode))
     11  (org-mode
     12   (indent-tabs-mode)
     13   (org-adapt-indentation)
     14   (org-edit-src-content-indentation . 0)
     15   (org-footnote-auto-adjust . t)
     16   (org-footnote-auto-label . t)
     17   (org-footnote-define-inline . nil)
     18   (org-footnote-section . "Footnotes")
     19   (org-hide-emphasis-markers . nil)))
     20 
     21 
     22