diff options
author | Amin Bandali <bandali@gnu.org> | 2019-05-10 16:15:43 -0400 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2019-05-10 16:16:05 -0400 |
commit | 2b53c994b868ae41d2f68f6e67ac518e2c78d321 (patch) | |
tree | 6f3b11b425996befddb6a1bf0b3ad715f39d2ab2 | |
parent | 198428af622c1ecd5af6784325d6cba1fe9e69ec (diff) | |
download | configs-2b53c994b868ae41d2f68f6e67ac518e2c78d321.tar.gz configs-2b53c994b868ae41d2f68f6e67ac518e2c78d321.tar.xz configs-2b53c994b868ae41d2f68f6e67ac518e2c78d321.zip |
emacs: add a few useful counsel-related keybindings
-rw-r--r-- | .emacs.d/init.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 8c1ff78..bc58c27 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -672,6 +672,9 @@ For disabling the behaviour for certain buffers and/or modes." ("C-c x" . counsel-M-x) ("C-c f ." . counsel-find-file) ("C-c f l" . counsel-find-library) + ("C-c f r" . counsel-recentf) + ("s-." . counsel-find-file) + ("s-r" . ivy-switch-buffer) :map minibuffer-local-map ("C-r" . counsel-minibuffer-history)) :config |