]> git.ipfire.org Git - thirdparty/systemd.git/blame - .dir-locals.el
final v236 update (#7649)
[thirdparty/systemd.git] / .dir-locals.el
CommitLineData
85f0c93a
ZJS
1; Sets emacs variables based on mode.
2; A list of (major-mode . ((var1 . value1) (var2 . value2)))
3; Mode can be nil, which gives default values.
4
2eb169bd
LP
5; Note that we set a line width of 119 for .c and XML files, but for everything
6; else (such as journal catalog files, unit files, README files) we stick to a
7; more conservative 79 characters.
8
9; NOTE: If you update this file make sure to update .vimrc and .editorconfig,
10; too.
11
85f0c93a 12((nil . ((indent-tabs-mode . nil)
e84750c9 13 (tab-width . 8)
2eb169bd
LP
14 (fill-column . 79)))
15 (c-mode . ((fill-column . 119)
16 (c-basic-offset . 8)
e84750c9
LP
17 (eval . (c-set-offset 'substatement-open 0))
18 (eval . (c-set-offset 'statement-case-open 0))
19 (eval . (c-set-offset 'case-label 0))
20 (eval . (c-set-offset 'arglist-intro '++))
54230826 21 (eval . (c-set-offset 'arglist-close 0))))
2eb169bd 22 (nxml-mode . ((nxml-child-indent . 2)
37efbbd8 23 (fill-column . 119)))
b884196c
ZJS
24 (meson-mode . ((meson-indent-basic . 8)))
25 (sh-mode . ((sh-basic-offset . 8)
26 (sh-indentation . 8)))
27 (awk-mode . ((c-basic-offset . 8))))