diff options
author | Lennart Poettering <lennart@poettering.net> | 2016-01-08 00:24:06 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-01-11 19:39:59 +0100 |
commit | e84750c905111675bdae8437257c764e13d776b5 (patch) | |
tree | e7bc26758b64dff8b32733ae9e098458b8126c1b /.dir-locals.el | |
parent | 0c7bff0acc8fd04bac9bfd16d696139951149ceb (diff) | |
download | systemd-e84750c905111675bdae8437257c764e13d776b5.tar.gz |
editors: specify fill column
Let's be a bit more precise with the editor configuration and specify a higher fill column of 119. This isn't as emacs'
default of 70, but also not particularly high on today's screens.
While we are at it, also set a couple of other emacs C coding style variables.
Diffstat (limited to '.dir-locals.el')
-rw-r--r-- | .dir-locals.el | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/.dir-locals.el b/.dir-locals.el index 9d9f8cd178..eee106213b 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -3,5 +3,11 @@ ; Mode can be nil, which gives default values. ((nil . ((indent-tabs-mode . nil) - (tab-width . 8))) -) + (tab-width . 8) + (fill-column . 119))) + (c-mode . ((c-basic-offset . 8) + (eval . (c-set-offset 'substatement-open 0)) + (eval . (c-set-offset 'statement-case-open 0)) + (eval . (c-set-offset 'case-label 0)) + (eval . (c-set-offset 'arglist-intro '++)) + (eval . (c-set-offset 'arglist-close 0))))) |