From 193dfa8df6d791d5810b410b770b1fd64247f16a Mon Sep 17 00:00:00 2001 From: Hartmut Goebel Date: Fri, 15 Mar 2019 21:03:35 +0100 Subject: Add a .dir-locals,el for configuring emacs for this project --- .dir-locals.el | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .dir-locals.el (limited to '.dir-locals.el') diff --git a/.dir-locals.el b/.dir-locals.el new file mode 100644 index 0000000..6878638 --- /dev/null +++ b/.dir-locals.el @@ -0,0 +1,16 @@ +;; Per-directory local variables for GNU Emacs 23 and later. + +((nil + . ((fill-column . 78) + (tab-width . 4) + (indent-tabs-mode . nil) + (show-trailing-whitespace . t) + (c-basic-offset . 2) + (ispell-check-comments . exclusive) + (ispell-local-dictionary . "american") + (safe-local-variable-values + '((c-default-style . "gnu") + (sentence-end-double-space . f) + (eval add-hook 'prog-mode-hook #'flyspell-prog-mode) + (flyspell-issue-message-flag . f) ; avoid messages for every word + ))))) -- cgit v1.2.3