diff options
author | Alex Kost <alezost@gmail.com> | 2014-08-27 16:44:17 +0400 |
---|---|---|
committer | Alex Kost <alezost@gmail.com> | 2014-09-03 23:50:35 +0400 |
commit | 457f60fa068c7becf60841daa2b6fc5121aedead (patch) | |
tree | 8cae5e141a6c5c643255b6777e19c063010cf6f0 /emacs/guix-init.el.in | |
parent | a423555d3c4314f8347d75b050d7daf6e594281f (diff) | |
download | guix-457f60fa068c7becf60841daa2b6fc5121aedead.tar guix-457f60fa068c7becf60841daa2b6fc5121aedead.tar.gz |
Add Emacs user interface.
* configure.ac (emacsuidir): New variable.
(AC_CONFIG_FILES): Add 'emacs/guix-init.el', 'emacs/guix-helper.scm'.
* Makefile.am: Include 'emacs.am'.
* emacs.am: New file.
* doc/emacs.texi: New file.
* doc/guix.texi: Include 'emacs.texi'.
* emacs/guix-backend.el: New file.
* emacs/guix-base.el: New file.
* emacs/guix-helper.scm.in: New file.
* emacs/guix-history.el: New file.
* emacs/guix-info.el: New file.
* emacs/guix-init.el.in: New file.
* emacs/guix-list.el: New file.
* emacs/guix-main.scm: New file.
* emacs/guix-utils.el: New file.
* emacs/guix.el: New file.
Diffstat (limited to 'emacs/guix-init.el.in')
-rw-r--r-- | emacs/guix-init.el.in | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/emacs/guix-init.el.in b/emacs/guix-init.el.in new file mode 100644 index 0000000000..4e62728187 --- /dev/null +++ b/emacs/guix-init.el.in @@ -0,0 +1,14 @@ +(require 'guix-autoloads) + +(defvar guix-load-path + (replace-regexp-in-string "${prefix}" "@prefix@" "@emacsuidir@") + "Directory with scheme files for \"guix.el\" package.") + +(defvar guix-default-profile + (concat (or (getenv "NIX_STATE_DIR") "@guix_localstatedir@/guix") + "/profiles/per-user/" + (getenv "USER") + "/guix-profile") + "Default Guix profile.") + +(provide 'guix-init) |