summary refs log tree commit diff
path: root/emacs.d/inits/20_ivy.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs.d/inits/20_ivy.el')
-rw-r--r--emacs.d/inits/20_ivy.el12
1 files changed, 12 insertions, 0 deletions
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))