summaryrefslogtreecommitdiff
path: root/init.org
diff options
context:
space:
mode:
Diffstat (limited to 'init.org')
-rw-r--r--init.org7
1 files changed, 7 insertions, 0 deletions
diff --git a/init.org b/init.org
index f21d6b4..ce26049 100644
--- a/init.org
+++ b/init.org
@@ -56,6 +56,7 @@ To install all packages via GNU Guix I can either use a manifest file or use the
emacs-fill-column-indicator \
emacs-geiser \
emacs-god-mode \
+ emacs-guix \
emacs-ido-ubiquitous \
emacs-js2-mode \
emacs-lispy \
@@ -879,6 +880,12 @@ Geiser makes Scheme development really nice. It’s also used for Guix developm
(setq geiser-guile-load-path '("~/dev/guix-wip")))
#+END_SRC
+Automatically start =guix-devel-mode= when in =scheme-mode= because I’m likely working on Guix anyway.
+
+#+BEGIN_SRC elisp
+(add-hook 'scheme-mode-hook 'guix-devel-mode)
+#+END_SRC
+
Parentheses don’t annoy me but I still prefer to have them fade into the background a little. This is what =paren-face-mode= does.
#+BEGIN_SRC elisp :noweb-ref paren-face-hook