.dir-locals.el: Don't mess up indentation of prepend and append.
[jackhill/guix/guix.git] / .dir-locals.el
CommitLineData
1722d680
LC
1;; Per-directory local variables for GNU Emacs 23 and later.
2
d53e8ba6
LC
3((nil
4 . ((fill-column . 78)
5 (tab-width . 8)
afb325d8 6 (sentence-end-double-space . t)
d53e8ba6
LC
7
8 ;; For use with 'bug-reference-prog-mode'.
9 (bug-reference-url-format . "http://bugs.gnu.org/%s")
10 (bug-reference-bug-regexp
0e1b0958
MC
11 . "<https?://\\(debbugs\\|bugs\\)\\.gnu\\.org/\\([0-9]+\\)>")
12
13 ;; Emacs-Guix
a895eace
CLW
14 (eval . (setq-local guix-directory
15 (locate-dominating-file default-directory
16 ".dir-locals.el")))
0e1b0958
MC
17
18 ;; Geiser
19 ;; This allows automatically setting the `geiser-guile-load-path'
20 ;; variable when using various Guix checkouts (e.g., via git worktrees).
1d6e7732
CLW
21 (eval . (let ((root-dir-unexpanded (locate-dominating-file
22 default-directory ".dir-locals.el")))
23 ;; While Guix should in theory always have a .dir-locals.el
24 ;; (we are reading this file, after all) there seems to be a
25 ;; strange problem where this code "escapes" to some other buffers,
26 ;; at least vc-mode. See:
27 ;; https://lists.gnu.org/archive/html/guix-devel/2020-11/msg00296.html
3428c66c 28 ;; Upstream report: <https://bugs.gnu.org/44698>
1d6e7732
CLW
29 ;; Hence the following "when", which might otherwise be unnecessary;
30 ;; it prevents causing an error when root-dir-unexpanded is nil.
31 (when root-dir-unexpanded
32 (let* ((root-dir (expand-file-name root-dir-unexpanded))
33 ;; Workaround for bug https://issues.guix.gnu.org/43818.
34 (root-dir* (directory-file-name root-dir)))
35
36 (unless (boundp 'geiser-guile-load-path)
37 (defvar geiser-guile-load-path '()))
38 (make-local-variable 'geiser-guile-load-path)
39 (require 'cl-lib)
40 (cl-pushnew root-dir* geiser-guile-load-path
41 :test #'string-equal)))))))
0e1b0958 42
1722d680
LC
43 (c-mode . ((c-file-style . "gnu")))
44 (scheme-mode
45 .
46 ((indent-tabs-mode . nil)
21b679f6 47 (eval . (put 'eval-when 'scheme-indent-function 1))
2abcc97f 48 (eval . (put 'call-with-prompt 'scheme-indent-function 1))
0bdba772 49 (eval . (put 'test-assert 'scheme-indent-function 1))
d664f1b4 50 (eval . (put 'test-assertm 'scheme-indent-function 1))
22ef06b8 51 (eval . (put 'test-equalm 'scheme-indent-function 1))
0bdba772 52 (eval . (put 'test-equal 'scheme-indent-function 1))
81deef27 53 (eval . (put 'test-eq 'scheme-indent-function 1))
0bdba772
LC
54 (eval . (put 'call-with-input-string 'scheme-indent-function 1))
55 (eval . (put 'guard 'scheme-indent-function 1))
1722d680
LC
56 (eval . (put 'lambda* 'scheme-indent-function 1))
57 (eval . (put 'substitute* 'scheme-indent-function 1))
f4596f76 58 (eval . (put 'match-record 'scheme-indent-function 2))
da99126c 59
04b2f3dd
LC
60 ;; 'modify-inputs' and its keywords.
61 (eval . (put 'modify-inputs 'scheme-indent-function 1))
62 (eval . (put 'replace 'scheme-indent-function 1))
04b2f3dd 63
da99126c 64 ;; 'modify-phases' and its keywords.
8ddc41e1 65 (eval . (put 'modify-phases 'scheme-indent-function 1))
da99126c
AK
66 (eval . (put 'replace 'scheme-indent-function 1))
67 (eval . (put 'add-before 'scheme-indent-function 2))
68 (eval . (put 'add-after 'scheme-indent-function 2))
69
cd6f6c22 70 (eval . (put 'modify-services 'scheme-indent-function 1))
1722d680 71 (eval . (put 'with-directory-excursion 'scheme-indent-function 1))
b7178c22 72 (eval . (put 'with-file-lock 'scheme-indent-function 1))
6fbd8fde 73 (eval . (put 'with-file-lock/no-wait 'scheme-indent-function 1))
55e1dfa4 74 (eval . (put 'with-profile-lock 'scheme-indent-function 1))
14c422c1 75 (eval . (put 'with-writable-file 'scheme-indent-function 2))
b7178c22 76
2a8417ac 77 (eval . (put 'package 'scheme-indent-function 0))
8d0e5c26 78 (eval . (put 'package/inherit 'scheme-indent-function 1))
35ef3633 79 (eval . (put 'origin 'scheme-indent-function 0))
0d5a559f
LC
80 (eval . (put 'build-system 'scheme-indent-function 0))
81 (eval . (put 'bag 'scheme-indent-function 0))
82daab42 82 (eval . (put 'gexp->derivation 'scheme-indent-function 1))
969df974 83 (eval . (put 'graft 'scheme-indent-function 0))
83bcd0b8
LC
84 (eval . (put 'operating-system 'scheme-indent-function 0))
85 (eval . (put 'file-system 'scheme-indent-function 0))
a2078770
LC
86 (eval . (put 'manifest-entry 'scheme-indent-function 0))
87 (eval . (put 'manifest-pattern 'scheme-indent-function 0))
073c34d7 88 (eval . (put 'substitute-keyword-arguments 'scheme-indent-function 1))
ce4a4829 89 (eval . (put 'with-store 'scheme-indent-function 1))
19c924af 90 (eval . (put 'with-external-store 'scheme-indent-function 1))
03323862 91 (eval . (put 'with-error-handling 'scheme-indent-function 0))
b860f382 92 (eval . (put 'with-mutex 'scheme-indent-function 1))
04d4c8a4 93 (eval . (put 'with-atomic-file-output 'scheme-indent-function 1))
01ac19dc
LC
94 (eval . (put 'call-with-compressed-output-port 'scheme-indent-function 2))
95 (eval . (put 'call-with-decompressed-port 'scheme-indent-function 2))
72153902
LC
96 (eval . (put 'call-with-gzip-input-port 'scheme-indent-function 1))
97 (eval . (put 'call-with-gzip-output-port 'scheme-indent-function 1))
66229b04
LC
98 (eval . (put 'call-with-lzip-input-port 'scheme-indent-function 1))
99 (eval . (put 'call-with-lzip-output-port 'scheme-indent-function 1))
81deef27 100 (eval . (put 'signature-case 'scheme-indent-function 1))
75f3b1a1
MW
101 (eval . (put 'emacs-batch-eval 'scheme-indent-function 0))
102 (eval . (put 'emacs-batch-edit-file 'scheme-indent-function 1))
103 (eval . (put 'emacs-substitute-sexps 'scheme-indent-function 1))
104 (eval . (put 'emacs-substitute-variables 'scheme-indent-function 1))
6eebbab5 105 (eval . (put 'with-derivation-narinfo 'scheme-indent-function 1))
c63d9403 106 (eval . (put 'with-derivation-substitute 'scheme-indent-function 2))
dc0f74e5 107 (eval . (put 'with-status-report 'scheme-indent-function 1))
7804c45b 108 (eval . (put 'with-status-verbosity 'scheme-indent-function 1))
041b340d 109 (eval . (put 'with-build-handler 'scheme-indent-function 1))
b860f382 110
f9704f17
LC
111 (eval . (put 'mlambda 'scheme-indent-function 1))
112 (eval . (put 'mlambdaq 'scheme-indent-function 1))
b860f382
LC
113 (eval . (put 'syntax-parameterize 'scheme-indent-function 1))
114 (eval . (put 'with-monad 'scheme-indent-function 1))
405a9d4e 115 (eval . (put 'mbegin 'scheme-indent-function 1))
21caa6de
LC
116 (eval . (put 'mwhen 'scheme-indent-function 1))
117 (eval . (put 'munless 'scheme-indent-function 1))
b860f382
LC
118 (eval . (put 'mlet* 'scheme-indent-function 2))
119 (eval . (put 'mlet 'scheme-indent-function 2))
21b679f6 120 (eval . (put 'run-with-store 'scheme-indent-function 1))
81a97734 121 (eval . (put 'run-with-state 'scheme-indent-function 1))
b1ec2233 122 (eval . (put 'wrap-program 'scheme-indent-function 1))
0bb9929e 123 (eval . (put 'with-imported-modules 'scheme-indent-function 1))
838e17d8 124 (eval . (put 'with-extensions 'scheme-indent-function 1))
cf2ac04f 125 (eval . (put 'with-parameters 'scheme-indent-function 1))
644cb40c 126 (eval . (put 'let-system 'scheme-indent-function 1))
7d873f19 127 (eval . (put 'with-build-variables 'scheme-indent-function 2))
21b679f6 128
7f9d184d 129 (eval . (put 'with-database 'scheme-indent-function 2))
1574bd82 130 (eval . (put 'call-with-database 'scheme-indent-function 1))
1d40e6fd 131 (eval . (put 'call-with-transaction 'scheme-indent-function 1))
5d6e2255 132 (eval . (put 'with-statement 'scheme-indent-function 3))
1d40e6fd 133 (eval . (put 'call-with-retrying-transaction 'scheme-indent-function 1))
37545de4 134 (eval . (put 'call-with-savepoint 'scheme-indent-function 1))
8971f626 135 (eval . (put 'call-with-retrying-savepoint 'scheme-indent-function 1))
7f9d184d 136
c1f6a0c2
DT
137 (eval . (put 'call-with-container 'scheme-indent-function 1))
138 (eval . (put 'container-excursion 'scheme-indent-function 1))
1563d6c7 139 (eval . (put 'eventually 'scheme-indent-function 1))
c1f6a0c2 140
1fafa2f5 141 (eval . (put 'call-with-progress-reporter 'scheme-indent-function 1))
43badf26 142 (eval . (put 'with-repository 'scheme-indent-function 2))
873f6f13 143 (eval . (put 'with-temporary-git-repository 'scheme-indent-function 2))
c83eedba
LC
144 (eval . (put 'with-environment-variables 'scheme-indent-function 1))
145 (eval . (put 'with-fresh-gnupg-setup 'scheme-indent-function 1))
1fafa2f5 146
c39693d7
LC
147 (eval . (put 'with-paginated-output-port 'scheme-indent-function 1))
148
6b9bebbb
MC
149 (eval . (put 'with-shepherd-action 'scheme-indent-function 3))
150
667b2508
LC
151 ;; This notably allows '(' in Paredit to not insert a space when the
152 ;; preceding symbol is one of these.
21b679f6 153 (eval . (modify-syntax-entry ?~ "'"))
667b2508
LC
154 (eval . (modify-syntax-entry ?$ "'"))
155 (eval . (modify-syntax-entry ?+ "'"))))
1722d680
LC
156 (emacs-lisp-mode . ((indent-tabs-mode . nil)))
157 (texinfo-mode . ((indent-tabs-mode . nil)
158 (fill-column . 72))))