summary refs log tree commit diff stats
path: root/tag-emacs
diff options
context:
space:
mode:
authorAlan Pearce2015-12-02 20:40:12 +0100
committerAlan Pearce2015-12-02 20:40:12 +0100
commitae5ba58dfb2fcd2343328b12b36d30c6e35ae8ab (patch)
tree1a9137ac83bbcd8637a5e58df79cf3c9e3775346 /tag-emacs
parent2384e5742f8cd0935c41c32560dbabd5b39e0462 (diff)
downloaddotfiles-ae5ba58dfb2fcd2343328b12b36d30c6e35ae8ab.tar.lz
dotfiles-ae5ba58dfb2fcd2343328b12b36d30c6e35ae8ab.tar.zst
dotfiles-ae5ba58dfb2fcd2343328b12b36d30c6e35ae8ab.zip
Emacs: Fix binding of persp-switch key
Diffstat (limited to 'tag-emacs')
-rw-r--r--tag-emacs/emacs.d/init.org5
1 files changed, 3 insertions, 2 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org
index 5808807..a4729ba 100644
--- a/tag-emacs/emacs.d/init.org
+++ b/tag-emacs/emacs.d/init.org
@@ -141,11 +141,12 @@ it needs hooking into projectile and a key bound to switch between projects.
 
 #+BEGIN_SRC emacs-lisp
   (use-package perspective
-    :bind (("s-p" . persp-switch))
+    :bind* ("s-p" . persp-switch)
     :init (progn
             (persp-mode)))
 
-  (use-package persp-projectile)
+  (use-package persp-projectile
+    :ensure nil)
 #+END_SRC
 
 ** vc