diff options
| author | Dominik Kaiser | 2025-02-09 12:07:25 +0100 |
|---|---|---|
| committer | Dominik Kaiser | 2025-02-09 12:07:25 +0100 |
| commit | 01bc012b9845a60ee927d2ac6306b70ef7bcc6ab (patch) | |
| tree | 0099b2287a6f2161bc2cfb9ebd1f619ca3d13c19 /init.el | |
| parent | 86be881cdd4648ac567c2afb004d394b3bd15728 (diff) | |
| download | emacs-01bc012b9845a60ee927d2ac6306b70ef7bcc6ab.tar.gz emacs-01bc012b9845a60ee927d2ac6306b70ef7bcc6ab.zip | |
Add ivy and counsel
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 ^ |
