twister

HTTP fault injector for testing
Log | Files | Refs | README | LICENSE

.dir-locals.el (543B)


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