22 lines
627 B
EmacsLisp
22 lines
627 B
EmacsLisp
(require 'guix-autoloads)
|
|
(require 'guix-emacs)
|
|
|
|
(defvar guix-load-path
|
|
(replace-regexp-in-string "${prefix}" "@prefix@" "@emacsuidir@")
|
|
"Directory with scheme files for \"guix.el\" package.")
|
|
|
|
(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)
|
|
|
|
(add-to-list 'load-path (guix-emacs-directory))
|
|
|
|
(when guix-package-enable-at-startup
|
|
(guix-emacs-load-autoloads 'all))
|
|
|
|
(provide 'guix-init)
|