diff options
author | David Thompson <dthompson@vistahigherlearning.com> | 2015-05-26 14:53:16 -0400 |
---|---|---|
committer | David Thompson <dthompson@vistahigherlearning.com> | 2015-05-26 14:53:16 -0400 |
commit | f010411149ba101939afc0b364ae049ed4d4f2a4 (patch) | |
tree | 25134bdaa9ba070e9227dc72ece44ddf1945068b | |
parent | a776e91804f504624eb970106328a782ee34683c (diff) |
emacs: Add elisp in ~/.guix-profile to load path.
-rw-r--r-- | dotfiles/.emacs.d/init.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/dotfiles/.emacs.d/init.el b/dotfiles/.emacs.d/init.el index 5ae1970..3378f49 100644 --- a/dotfiles/.emacs.d/init.el +++ b/dotfiles/.emacs.d/init.el @@ -13,6 +13,9 @@ ;;; Packages ;;; +(add-to-list 'load-path + (concat (getenv "HOME") "/.guix-profile/share/emacs/site-lisp")) + (require 'package) (add-to-list 'package-archives '("melpa" . "http://melpa.milkbox.net/packages/") t) |