From c7f0bff2e2c331a2f59f3838398d22f7c0037e52 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Thu, 11 Feb 2016 21:26:01 -0800 Subject: [emacs] replacing 'helm' with 'ivy'. --- emacs.d/inits/20_ivy.el | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 emacs.d/inits/20_ivy.el (limited to 'emacs.d/inits/20_ivy.el') diff --git a/emacs.d/inits/20_ivy.el b/emacs.d/inits/20_ivy.el new file mode 100644 index 0000000..cdd488b --- /dev/null +++ b/emacs.d/inits/20_ivy.el @@ -0,0 +1,12 @@ +(use-package swiper + :ensure t + :diminish ivy-mode + :bind ("C-s" . swiper) + :config + (setq ivy-use-virtual-buffers t) + (ivy-mode)) + +(use-package counsel + :ensure t + :config + (setq counsel-find-file-at-point t)) -- cgit 1.4.1