.dir-locals.el 543 B

12345678910111213141516
  1. ;; Per-directory local variables for GNU Emacs 23 and later.
  2. ((nil
  3. . ((fill-column . 78)
  4. (tab-width . 4)
  5. (indent-tabs-mode . nil)
  6. (show-trailing-whitespace . t)
  7. (c-basic-offset . 2)
  8. (ispell-check-comments . exclusive)
  9. (ispell-local-dictionary . "american")
  10. (safe-local-variable-values
  11. '((c-default-style . "gnu")
  12. (sentence-end-double-space . f)
  13. (eval add-hook 'prog-mode-hook #'flyspell-prog-mode)
  14. (flyspell-issue-message-flag . f) ; avoid messages for every word
  15. )))))