aboutsummaryrefslogtreecommitdiff
path: root/.dir-locals.el
diff options
context:
space:
mode:
authorHartmut Goebel <h.goebel@crazy-compilers.com>2019-03-15 21:03:35 +0100
committerHartmut Goebel <h.goebel@crazy-compilers.com>2019-03-15 21:06:19 +0100
commit0cc6cafb510c8732b44f856726caaeab85a0afb0 (patch)
tree55892a049deec788fb37f4f4cd6b1705e56c5b31 /.dir-locals.el
parentc0332990f92efcb9569fcb809484f9774eea3a14 (diff)
downloadgnunet-0cc6cafb510c8732b44f856726caaeab85a0afb0.tar.gz
gnunet-0cc6cafb510c8732b44f856726caaeab85a0afb0.zip
Add a .dir-locals,el for configuring emacs for this project
Diffstat (limited to '.dir-locals.el')
-rw-r--r--.dir-locals.el16
1 files changed, 16 insertions, 0 deletions
diff --git a/.dir-locals.el b/.dir-locals.el
new file mode 100644
index 000000000..687863811
--- /dev/null
+++ b/.dir-locals.el
@@ -0,0 +1,16 @@
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 )))))