]> git.ipfire.org Git - thirdparty/systemd.git/blame_incremental - .dir-locals.el
sysusers: add support for a --image= switch
[thirdparty/systemd.git] / .dir-locals.el
... / ...
CommitLineData
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
5; Note that we set a line width of 109 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
12((c-mode . ((fill-column . 109)
13 (c-basic-offset . 8)
14 (eval . (c-set-offset 'substatement-open 0))
15 (eval . (c-set-offset 'statement-case-open 0))
16 (eval . (c-set-offset 'case-label 0))
17 (eval . (c-set-offset 'arglist-intro '++))
18 (eval . (c-set-offset 'arglist-close 0))
19 (eval . (c-set-offset 'arglist-cont-nonempty '(c-lineup-gcc-asm-reg c-lineup-arglist)))))
20 (nxml-mode . ((nxml-child-indent . 2)
21 (fill-column . 109)))
22 (meson-mode . ((meson-indent-basic . 8)))
23 (sh-mode . ((sh-basic-offset . 4)
24 (sh-indentation . 4)))
25 (awk-mode . ((c-basic-offset . 8)))
26 (nil . ((indent-tabs-mode . nil)
27 (tab-width . 8)
28 (fill-column . 79))) )