bd6163d13f
* emacs/guix-{init,profiles}.el.in: Rename to ... * emacs/guix-{init,profiles}.el: ... these. New files. Use 'guix-config'. * emacs/guix-config.el.in: New file. * emacs.am (nodist_lisp_DATA): Add it. Move them to ... (ELFILES): ... here. * .gitignore, configure.ac: Adjust accordingly.
19 lines
567 B
EmacsLisp
19 lines
567 B
EmacsLisp
(require 'guix-config)
|
|
(require 'guix-autoloads)
|
|
|
|
(defvar guix-load-path guix-emacs-interface-directory
|
|
"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)
|
|
|
|
(when guix-package-enable-at-startup
|
|
(require 'guix-emacs)
|
|
(guix-emacs-load-autoloads 'all))
|
|
|
|
(provide 'guix-init)
|