summary refs log tree commit diff stats
path: root/emacs/init.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs/init.el')
-rw-r--r--emacs/init.el12
1 files changed, 6 insertions, 6 deletions
diff --git a/emacs/init.el b/emacs/init.el
index af45349..0b92b4e 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -914,11 +914,12 @@ Also returns nil if pid is nil."
 
 (use-package multiple-cursors
   :ensure t
-  :bind (("C-." . mc/mark-next-like-this)
-         ("C-," . mc/mark-previous-like-this)
-         ("M-<f3>" . mc/mark-all-like-this-dwim)
-         ("C-<f3>" . mc/mark-more-like-this-extended)
-         ("C-S-L" . mc/edit-lines)))
+  :config (progn
+            (bind-key "C-." #'mc/mark-next-like-this)
+            (bind-key "C-," #'mc/mark-previous-like-this)
+            (bind-key "M-<f3>" #'mc/mark-all-like-this-dwim)
+            (bind-key "C-<f3>" #'mc/mark-more-like-this-extended)
+            (bind-key "C-S-L" #'mc/edit-lines)))
 
 (use-package eldoc
   :defer t
@@ -1008,7 +1009,6 @@ Also returns nil if pid is nil."
   :config (use-package quack))
 
 (use-package slime
-  :ensure t
   :commands (slime)
   :config (progn
             (let ((ql-slime-helper (expand-file-name "~/quicklisp/slime-helper.el")))