summary refs log tree commit diff stats
path: root/emacs
diff options
context:
space:
mode:
authorAlan Pearce2013-08-27 13:09:35 +0100
committerAlan Pearce2013-08-28 09:12:45 +0100
commit114df7733b3534738c23e170b563cb7abd29da43 (patch)
treec0dd709c29ce8409be99c00761ace7f547bb0146 /emacs
parent5ac5ba3ba8e7b78736ff0e12a065713658579063 (diff)
downloaddotfiles-114df7733b3534738c23e170b563cb7abd29da43.tar.lz
dotfiles-114df7733b3534738c23e170b563cb7abd29da43.tar.zst
dotfiles-114df7733b3534738c23e170b563cb7abd29da43.zip
Emacs: add extra keybinding for projectile-find-file
Diffstat (limited to 'emacs')
-rw-r--r--emacs/init.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/emacs/init.el b/emacs/init.el
index 499636f..e7e080c 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -494,6 +494,8 @@ Values: `desktop', `server', `laptop'")
 
 (unbind-key "s-n")
 
+(bind-key "s-x" (define-prefix-command 'super-x-map))
+
 (set-register ?e `(file . ,*init-file*))
 
 ;; Enable narrowing functions C-x n
@@ -664,7 +666,8 @@ Values: `desktop', `server', `laptop'")
 
 (use-package projectile
   :ensure t
-  :bind (("C-c C-f" . projectile-find-file))
+  :bind (("C-c C-f" . projectile-find-file)
+         ("s-x s-f" . projectile-find-file))
   :commands (projectile-global-mode))
 
 (use-package project-persist