summaryrefslogtreecommitdiffstats
path: root/.emacs.d/init.org
diff options
context:
space:
mode:
authorAmin Bandali <bandali@gnu.org>2019-05-09 23:59:40 -0400
committerAmin Bandali <bandali@gnu.org>2019-05-09 23:59:40 -0400
commit970aa92ead84ce3bc7039a098c0a8f84fb0deb58 (patch)
treebeb0a4d2daabd0b31840f17c5df5ea9f55ccb95e /.emacs.d/init.org
parentadaf94002bf2fd34574e1ca53f2c41393f356f59 (diff)
downloadconfigs-970aa92ead84ce3bc7039a098c0a8f84fb0deb58.tar.gz
configs-970aa92ead84ce3bc7039a098c0a8f84fb0deb58.tar.xz
configs-970aa92ead84ce3bc7039a098c0a8f84fb0deb58.zip
emacs: use ivy’s virtual buffers
Diffstat (limited to '')
-rw-r--r--.emacs.d/init.org8
1 files changed, 6 insertions, 2 deletions
diff --git a/.emacs.d/init.org b/.emacs.d/init.org
index 5d877f8..06b0ce0 100644
--- a/.emacs.d/init.org
+++ b/.emacs.d/init.org
@@ -1084,7 +1084,11 @@ There's no way I could top that, so I won't attempt to.
([S-down] . ivy-next-history-element)
("DEL" . ivy-backward-delete-char))
:config
- (setq ivy-wrap t)
+ (setq ivy-wrap t
+ ivy-height 14
+ ivy-use-virtual-buffers t
+ ivy-virtual-abbreviate 'abbreviate
+ ivy-count-format "%d/%d ")
(ivy-mode 1)
;; :custom-face
;; (ivy-minibuffer-match-face-2 ((t (:background "#e99ce8" :weight semi-bold))))
@@ -1110,9 +1114,9 @@ There's no way I could top that, so I won't attempt to.
:after ivy
:bind (([remap execute-extended-command] . counsel-M-x)
([remap find-file] . counsel-find-file)
- ("s-r" . counsel-recentf)
("C-c x" . counsel-M-x)
("C-c f ." . counsel-find-file)
+ ("C-c f l" . counsel-find-library)
:map minibuffer-local-map
("C-r" . counsel-minibuffer-history))
:config