diff options
author | David Thompson <dthompson2@worcester.edu> | 2015-10-09 13:28:58 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2015-10-09 13:28:58 -0400 |
commit | de0dd64073fc87e699d3efb0c6346550b4fe0cd3 (patch) | |
tree | d76561646583ccf9272030f3d621eb94a41da384 | |
parent | 7d114259d843766cd64b8071acbe0f8162d7542c (diff) |
emacs: Load elisp for development Guix.
-rw-r--r-- | dotfiles/.emacs.d/init.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/dotfiles/.emacs.d/init.el b/dotfiles/.emacs.d/init.el index 649c8f4..4b187a3 100644 --- a/dotfiles/.emacs.d/init.el +++ b/dotfiles/.emacs.d/init.el @@ -15,6 +15,11 @@ (add-to-list 'load-path (concat (getenv "HOME") "/.guix-profile/share/emacs/site-lisp")) +(add-to-list 'load-path + (concat (getenv "HOME") "/Code/guix/emacs")) + +(when-require 'guix-init + (setf guix-dot-program (concat (getenv "HOME") "/.guix-profile/bin/dot"))) (require 'package) (add-to-list 'package-archives |