aboutsummaryrefslogtreecommitdiffstats
path: root/emacs/loader.org
diff options
context:
space:
mode:
Diffstat (limited to 'emacs/loader.org')
-rw-r--r--emacs/loader.org25
1 files changed, 13 insertions, 12 deletions
diff --git a/emacs/loader.org b/emacs/loader.org
index 175c2bb..21738b1 100644
--- a/emacs/loader.org
+++ b/emacs/loader.org
@@ -271,18 +271,19 @@ Used to display what every key combination does when starting to enter it.
**** Ivy
#+BEGIN_SRC emacs-lisp
- (use-package ivy
- :bind
- (("C-s" . 'swiper)
- ("M-x" . 'counsel-M-x)
- ("C-x C-f" . 'counsel-find-file)
- ("C-c g" . 'counsel-git)
- ("C-c j" . 'counsel-git-grep)
- ("C-c k" . 'counsel-ag)
- ("C-c C-r" . 'ivy-resume))
- :config
- (setq ivy-use-virtual-buffers t)
- (setq ivy-count-format "(%d/%d) "))
+ (use-package ivy
+ :bind
+ (("C-s" . 'swiper)
+ ("M-x" . 'counsel-M-x)
+ ("C-x C-f" . 'counsel-find-file)
+ ("C-c g" . 'counsel-git)
+ ("C-c j" . 'counsel-git-grep)
+ ("C-c k" . 'counsel-ag)
+ ("C-c C-r" . 'ivy-resume)
+ ("C-x b" . 'counsel-ibuffer))
+ :config
+ (setq ivy-use-virtual-buffers t)
+ (setq ivy-count-format "(%d/%d) "))
#+END_SRC
**** Winner Mode