diff options
author | David Thompson <dthompson2@worcester.edu> | 2017-01-04 22:16:26 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2017-01-04 22:16:26 -0500 |
commit | 98dc87a054c1108bd5f4bb093024d962ce0c8ce2 (patch) | |
tree | 9fa25dca82134bcdbe8693bfd5b212ce3b3880f8 /.dir-locals.el |
First commit!
Diffstat (limited to '.dir-locals.el')
-rw-r--r-- | .dir-locals.el | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.dir-locals.el b/.dir-locals.el new file mode 100644 index 0000000..86a4575 --- /dev/null +++ b/.dir-locals.el @@ -0,0 +1,13 @@ +((scheme-mode + . + ((eval . (put 'with-blend-mode 'scheme-indent-function 1)) + (eval . (put 'with-depth-test 'scheme-indent-function 1)) + (eval . (put 'with-texture 'scheme-indent-function 1)) + (eval . (put 'with-shader 'scheme-indent-function 1)) + (eval . (put 'with-vertex-array 'scheme-indent-function 1)) + (eval . (put 'with-projection 'scheme-indent-function 1)) + (eval . (put 'with-framebuffer 'scheme-indent-function 1)) + (eval . (put 'with-viewport 'scheme-indent-function 1)) + (eval . (put 'with-mapped-vertex-buffer 'scheme-indent-function 1)) + (eval . (put 'uniform-let 'scheme-indent-function 1)) + (eval . (put 'call-with-surface 'scheme-indent-function 1))))) |