summaryrefslogtreecommitdiffstats
path: root/init.org
diff options
context:
space:
mode:
authorAmin Bandali <bandali@gnu.org>2018-11-26 00:00:48 -0500
committerAmin Bandali <bandali@gnu.org>2018-11-26 00:00:48 -0500
commit0864b4dbb656191033a38cbdf24aeefa69b8a8b9 (patch)
tree4f776383e1c5a965741825a22e8a9c90aded0006 /init.org
parent81a6a704b1bee934e7007806399f2b5e7e0c4ac8 (diff)
downloadconfigs-0864b4dbb656191033a38cbdf24aeefa69b8a8b9.tar.gz
configs-0864b4dbb656191033a38cbdf24aeefa69b8a8b9.tar.xz
configs-0864b4dbb656191033a38cbdf24aeefa69b8a8b9.zip
[emacs] tweak bindings a bit
Diffstat (limited to 'init.org')
-rw-r--r--init.org6
1 files changed, 4 insertions, 2 deletions
diff --git a/init.org b/init.org
index 3af265d..d42c16a 100644
--- a/init.org
+++ b/init.org
@@ -790,6 +790,9 @@ customizing it.
(amin--leader-keys
"/" '(:ignore t :wk "search")
+ "a" '(:ignore t :wk "apps")
+ "a i" 'ielm
+
"b" '(:ignore t :wk "buffers")
"b k" 'kill-this-buffer
"b s" 'save-buffer
@@ -798,8 +801,6 @@ customizing it.
"e b" 'eval-buffer
"e r" 'eval-region
- "e e" 'shell-pop
-
"f" '(:ignore t :wk "files")
"F" '(:ignore t :wk "frames")
@@ -1780,6 +1781,7 @@ Emacs package that displays available keybindings in popup
#+begin_src emacs-lisp
(use-package shell-pop
:defer 1
+ :general (amin--leader-keys "a s" 'shell-pop)
:init
(setq shell-pop-universal-key "C-c e"
shell-pop-shell-type '("eshell" "*eshell*" (lambda nil (eshell)))))