forked from bhollister179/Backtest.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.dir-locals.el
15 lines (14 loc) · 825 Bytes
/
.dir-locals.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
;;; Directory Local Variables
;;; For more information see (info "(emacs) Directory Variables")
((nil . ((magit-large-repo-set-p . t)
(lsp-julia-default-environment . "PingPong")
(eval . (progn
(setenv "JULIA_DEV" "1")
;; Use these when using a locally compiled image
;; (setenv "JULIA_CPU_TARGET" "native")
;; (setq julia-repl-switches (concat "--sysimage=" (my/concat-path (or (projectile-project-root) (pwd)) "PingPong.so ")))
(when (boundp 'envrc-auto-reload-paths)
(cl-pushnew (file-name-concat
(locate-dominating-file (pwd) ".dir-locals.el") ".envrc")
envrc-auto-reload-paths :test #'equal))
)))))