diff options
author | Christopher Baines <mail@cbaines.net> | 2020-04-09 21:10:10 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2020-04-10 20:34:47 +0100 |
commit | 8d7fd9b7d761e5442aa4f429f8894ab047c98387 (patch) | |
tree | 69dd118f41b14a2c829292aa8023f91fe69eb138 | |
parent | f4fbd540778882a694e56e4a2671ffb4bafab823 (diff) | |
download | build-coordinator-8d7fd9b7d761e5442aa4f429f8894ab047c98387.tar build-coordinator-8d7fd9b7d761e5442aa4f429f8894ab047c98387.tar.gz |
Add a .dir-locals.el file for Emacs
-rw-r--r-- | .dir-locals.el | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.dir-locals.el b/.dir-locals.el new file mode 100644 index 0000000..025553e --- /dev/null +++ b/.dir-locals.el @@ -0,0 +1,10 @@ +;;; Directory Local Variables +;;; For more information see (info "(emacs) Directory Variables") + +((nil + (fill-column . 78) + (tab-width . 8)) + (scheme-mode + (indent-tabs-mode) + (eval put 'make-parameter 'scheme-indent-function 1) + (eval put 'with-db-worker-thread 'scheme-indent-function 1))) |