Add .dir-locals and set c-basic-offset to 2.

This makes it easier for emacs users to automatically get the right
2-space indentation when they edit curl source files.

c++-mode is in there as well because Emacs can't easily know if
something is a C or C++ header.

Closes #574
This commit is contained in:
Anders Bakken 2015-12-21 10:12:35 -08:00 committed by Daniel Stenberg
parent c208c783f5
commit 04cb90948e
1 changed files with 10 additions and 0 deletions

10
.dir-locals.el Normal file
View File

@ -0,0 +1,10 @@
;;; Directory Local Variables
;;; See Info node `(emacs) Directory Variables' for more information.
((nil . ((indent-tabs-mode . nil)
(show-trailing-whitespace . t)))
(c-mode . ((c-basic-offset . 2)
))
(c++-mode . ((c-basic-offset . 2)
))
)