diff options
author | Alan Pearce | 2013-05-18 21:53:26 +0100 |
---|---|---|
committer | Alan Pearce | 2013-05-18 21:53:26 +0100 |
commit | 6c6d76608301c24973a948bb693940a003f2a747 (patch) | |
tree | f4656608047a67211c648f3783f617164fffa007 /emacs/init.el | |
parent | d67bf2ed02d312a943caa11c13a65cd20ca9aba3 (diff) | |
download | dotfiles-6c6d76608301c24973a948bb693940a003f2a747.tar.lz dotfiles-6c6d76608301c24973a948bb693940a003f2a747.tar.zst dotfiles-6c6d76608301c24973a948bb693940a003f2a747.zip |
Emacs: add redshank-mode and install into lisp hooks
Diffstat (limited to 'emacs/init.el')
-rw-r--r-- | emacs/init.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/emacs/init.el b/emacs/init.el index 46ecbde..877e5fd 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -831,6 +831,7 @@ Also returns nil if pid is nil." (if (featurep 'autopair) (autopair-mode -1)) (paredit-mode +1) + (redshank-mode +1) (eldoc-add-command 'paredit-backward-delete 'paredit-close-round) (if (featurep 'auto-indent-mode) @@ -861,6 +862,9 @@ Also returns nil if pid is nil." run-geiser run-racket)) +(use-package redshank + :ensure t) + (use-package geiser-base :defer t :config (use-package quack)) |