summary refs log tree commit diff
path: root/emacs.d/inits/20_ivy.el
diff options
context:
space:
mode:
authorFranck Cuny <franckcuny@gmail.com>2016-02-11 21:26:01 -0800
committerFranck Cuny <franckcuny@gmail.com>2016-02-11 21:26:01 -0800
commitc7f0bff2e2c331a2f59f3838398d22f7c0037e52 (patch)
tree16ac916af3e3648bb10ef3281d08a61403e29911 /emacs.d/inits/20_ivy.el
parent[emacs] add configuration for Haskell. (diff)
downloademacs.d-c7f0bff2e2c331a2f59f3838398d22f7c0037e52.tar.gz
[emacs] replacing 'helm' with 'ivy'.
Diffstat (limited to '')
-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))