-
Notifications
You must be signed in to change notification settings - Fork 1
/
.dir-locals.el
18 lines (17 loc) · 1.01 KB
/
.dir-locals.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
;; Per-directory local variables for GNU Emacs 23 and later.
((nil
. ((projectile-project-configure-cmd . "./configure")
(projectile-project-test-cmd . "make check")
(projectile-project-install-cmd . "make install")
(eval . (progn
(when (boundp #'projectile-project-root)
(setenv "GUIX_PACKAGE_PATH"
(concat (projectile-project-root)
"dotfiles/guixsd/modules")))
(setq-local geiser-guile-load-path
(append (list (concat (getenv "HOME") "/src/cgit.duckdns.org/guix/guix-wigust/guix"))
(list (concat (getenv "HOME") "/src/gitlab.com/nonguix/nonguix"))
(if (boundp #'projectile-project-root)
(list (concat (projectile-project-root)
"dotfiles/guixsd/modules"))
'()))))))))