2014-08-27 08:44:17 -04:00
|
|
|
(require 'guix-autoloads)
|
|
|
|
|
|
|
|
(defvar guix-load-path
|
|
|
|
(replace-regexp-in-string "${prefix}" "@prefix@" "@emacsuidir@")
|
|
|
|
"Directory with scheme files for \"guix.el\" package.")
|
|
|
|
|
2014-11-30 15:38:43 -05:00
|
|
|
(defcustom guix-package-enable-at-startup t
|
|
|
|
"If non-nil, activate Emacs packages installed in a user profile.
|
|
|
|
Set this variable to nil before requiring `guix-init' file to
|
|
|
|
avoid loading autoloads of Emacs packages installed in
|
|
|
|
`guix-user-profile'."
|
|
|
|
:type 'boolean
|
|
|
|
:group 'guix)
|
|
|
|
|
|
|
|
(when guix-package-enable-at-startup
|
2015-06-19 05:31:59 -04:00
|
|
|
(require 'guix-emacs)
|
2014-11-30 15:38:43 -05:00
|
|
|
(guix-emacs-load-autoloads 'all))
|
|
|
|
|
2014-08-27 08:44:17 -04:00
|
|
|
(provide 'guix-init)
|