aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnonymized <anonymous@example.com>2018-01-20 00:12:03 +0100
committerAnonymized <anonymous@example.com>2018-01-20 00:12:03 +0100
commitdc9feffd4294da4ac48508dc77d567563c97728d (patch)
treeeb3fcdfd75eaef1c1e5b6401a7a1b72741b27b8a
parentf99ad3457edee1f2d63f5401f103dca873130a7d (diff)
downloadgnunet-guile2-dc9feffd4294da4ac48508dc77d567563c97728d.tar.gz
gnunet-guile2-dc9feffd4294da4ac48508dc77d567563c97728d.zip
add .dir-locals.el
-rw-r--r--.dir-locals.el17
1 files changed, 17 insertions, 0 deletions
diff --git a/.dir-locals.el b/.dir-locals.el
new file mode 100644
index 0000000..2fb3786
--- /dev/null
+++ b/.dir-locals.el
@@ -0,0 +1,17 @@
1;; The 'nil' configuration applies to all modes.
2((nil . (
3 (eval . (progn
4 ;; minikanren stuff
5 (put 'run* 'scheme-indent-function 1)
6 (put 'fresh 'scheme-indent-function 1)
7 (put 'conde 'scheme-indent-function nil)
8 ;; wiredtigerz
9 (put 'with-cursor 'scheme-indent-function 1)
10 (put 'with-directory 'scheme-indent-function 1)
11 (put 'with-env 'scheme-indent-function 1)
12 (put 'with-context 'scheme-indent-function 1)
13 (put 'match 'scheme-indent-function 1)
14 (put 'with-transaction 'scheme-indent-function 1)
15 (put 'test-check 'scheme-indent-function 1)
16 (put 'call-with-cursor 'scheme-indent-function 1)
17 (put 'with-cnx 'scheme-indent-function 1))))))