diff options
Diffstat (limited to '.dir-locals.el')
-rw-r--r-- | .dir-locals.el | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.dir-locals.el b/.dir-locals.el new file mode 100644 index 0000000..e2cc424 --- /dev/null +++ b/.dir-locals.el @@ -0,0 +1,8 @@ +((scheme-mode + . + ((indent-tabs-mode . nil) + (eval . (put 'call-with-pipe* 'scheme-indent-function 2)) + (eval . (put 'call-with-output-pipe* 'scheme-indent-function 1)) + (eval . (put 'call-with-input-pipe* 'scheme-indent-function 1)) + (eval . (put 'call-with-encrypted-output-file 'scheme-indent-function 2)) + (eval . (put 'call-with-decrypted-input-file 'scheme-indent-function 1))))) |