.dir-locals.el 1.0 KB

12345678910111213141516171819
  1. ;; Per-directory local variables for GNU Emacs 23 and later.
  2. ((nil
  3. . ((projectile-project-configure-cmd . "./configure")
  4. (projectile-project-test-cmd . "make check")
  5. (projectile-project-install-cmd . "make install")
  6. (eval . (progn
  7. (when (boundp #'projectile-project-root)
  8. (setenv "GUIX_PACKAGE_PATH"
  9. (concat (projectile-project-root)
  10. "dotfiles/guixsd/modules")))
  11. (setq-local geiser-guile-load-path
  12. (append (list (concat (getenv "HOME") "/src/cgit.duckdns.org/guix/guix-wigust/guix"))
  13. (list (concat (getenv "HOME") "/src/gitlab.com/nonguix/nonguix"))
  14. (if (boundp #'projectile-project-root)
  15. (list (concat (projectile-project-root)
  16. "dotfiles/guixsd/modules"))
  17. '()))))))))