aboutsummaryrefslogtreecommitdiff
path: root/.dir-locals.el
diff options
context:
space:
mode:
Diffstat (limited to '.dir-locals.el')
-rw-r--r--.dir-locals.el18
1 files changed, 13 insertions, 5 deletions
diff --git a/.dir-locals.el b/.dir-locals.el
index 31be82f..3c3c196 100644
--- a/.dir-locals.el
+++ b/.dir-locals.el
@@ -1,5 +1,13 @@
-((nil
- (eval
- . (let ((opam-share (car (process-lines "opam" "var" "share"))))
- (when (and opam-share (file-directory-p opam-share))
- (add-to-list 'load-path (expand-file-name "emacs/site-lisp" opam-share)))))))
+;;; Directory Local Variables -*- no-byte-compile: t -*-
+;;; For more information see (info "(emacs) Directory Variables")
+
+((nil . ((jinx-dir-local-words . "Lwt")
+ (eval . (let
+ ((opam-share
+ (car
+ (process-lines "opam" "var" "share"))))
+ (when
+ (and opam-share
+ (file-directory-p opam-share))
+ (add-to-list 'load-path
+ (expand-file-name "emacs/site-lisp" opam-share))))))))