Add a .dir-locals.el file for Emacs.

It specifies not to use TABs and to indent by 4 spaces.
This commit is contained in:
Tobias Rittweiler 2018-11-14 13:43:58 +01:00
parent 5c58a8d411
commit e2ea7911ba

3
.dir-locals.el Normal file
View File

@ -0,0 +1,3 @@
((c-mode . ((indent-tabs-mode . nil)
(c-file-style . "gnu")
(c-basic-offset . 4))))