tell emacs users how to follow coding conventions

This commit is contained in:
Daniel Kahn Gillmor 2015-07-19 11:35:13 +02:00
parent 540ffb8a4a
commit 0dc08a30ce
1 changed files with 9 additions and 0 deletions

9
.dir-locals.el Normal file
View File

@ -0,0 +1,9 @@
;; emacs local configuration settings for getdns source
;; surmised by dkg on 2015-07-19 10:10:51+0200
((c-mode
(indent-tabs-mode . t)
(tab-width . 8)
(c-basic-offset . 8)
(c-file-style . "linux"))
)