diff options
Diffstat (limited to 'init.el')
| -rw-r--r-- | init.el | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -28,3 +28,17 @@ (set-fringe-mode 10) (load-theme 'tango-dark) + +(use-package ivy + :bind (("C-s" . swiper) + :map ivy-minibuffer-map + ("TAB" . ivy-alt-done)) + :config + (ivy-mode 1)) + +(use-package counsel + :bind (("M-x" . counsel-M-x) + ("C-x b" . counsel-ibuffer) + ("C-x C-f" . counsel-find-file)) + :config + (setq ivy-initial-inputs-alist nil)) ;; Don't start searches with ^ |
