From 084360dd6cae51f00570f7bdac3d8df04966791b Mon Sep 17 00:00:00 2001 From: Raul Benencia Date: Wed, 21 Apr 2021 22:53:14 -0700 Subject: Use ivy instead of helm/ido --- .emacs.local.d/modes/ivy.el | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .emacs.local.d/modes/ivy.el (limited to '.emacs.local.d/modes') diff --git a/.emacs.local.d/modes/ivy.el b/.emacs.local.d/modes/ivy.el new file mode 100644 index 0000000..8533676 --- /dev/null +++ b/.emacs.local.d/modes/ivy.el @@ -0,0 +1,27 @@ +(use-package ivy + :diminish (ivy-mode . "") + :init (ivy-mode 1) ; globally at startup + :config + (setq ivy-use-virtual-buffers t) + (setq ivy-height 20) + (setq ivy-count-format "%d/%d ")) +(provide 'init-ivy) + +;; Override the basic Emacs commands +(use-package counsel + :bind* ; load when pressed + (("M-x" . counsel-M-x) + ("C-s" . swiper) + ("C-x C-f" . counsel-find-file) + ("C-x C-r" . counsel-recentf) ; search for recently edited + ("C-c g" . counsel-git) ; search for files in git repo + ("C-c j" . counsel-git-grep) ; search for regexp in git repo + ("C-c /" . counsel-ag) ; Use ag for regexp + ("C-x l" . counsel-locate) + ("C-x C-f" . counsel-find-file) + (" f" . counsel-describe-function) + (" v" . counsel-describe-variable) + (" l" . counsel-find-library) + (" i" . counsel-info-lookup-symbol) + (" u" . counsel-unicode-char) + ("C-c C-r" . ivy-resume))) ; Resume last Ivy-based completion -- cgit v1.2.3