diff options
author | Alan Pearce | 2015-12-02 20:40:12 +0100 |
---|---|---|
committer | Alan Pearce | 2015-12-02 20:40:12 +0100 |
commit | ae5ba58dfb2fcd2343328b12b36d30c6e35ae8ab (patch) | |
tree | 1a9137ac83bbcd8637a5e58df79cf3c9e3775346 /tag-emacs/emacs.d | |
parent | 2384e5742f8cd0935c41c32560dbabd5b39e0462 (diff) | |
download | nixfiles-ae5ba58dfb2fcd2343328b12b36d30c6e35ae8ab.tar.lz nixfiles-ae5ba58dfb2fcd2343328b12b36d30c6e35ae8ab.tar.zst nixfiles-ae5ba58dfb2fcd2343328b12b36d30c6e35ae8ab.zip |
Emacs: Fix binding of persp-switch key
Diffstat (limited to 'tag-emacs/emacs.d')
-rw-r--r-- | tag-emacs/emacs.d/init.org | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org index 58088074..a4729baf 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 |