diff options
author | Vincent Ambo <tazjin@gmail.com> | 2018-05-01T14·01+0200 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2018-05-01T14·01+0200 |
commit | 72a33b9156ac1b60703659c3ff204a501f67599f (patch) | |
tree | 161b2674ffcd0a56bf6f360807dea9bb48cd6ccf /init/bindings.el | |
parent | eaac33465d7885ec71f161ad769f04103ff2f58f (diff) |
feat(all): Replace helm with ivy
For most of my use-cases Helm seems to be overkill, and despite overall seeming like a nice and featureful package it has stability issues and bugs that annoy me. I've heard that ivy is simpler to use and configure, so I'm giving it a chance here.
Diffstat (limited to 'init/bindings.el')
-rw-r--r-- | init/bindings.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/init/bindings.el b/init/bindings.el index b8af7751f16e..775128bcd221 100644 --- a/init/bindings.el +++ b/init/bindings.el @@ -57,7 +57,7 @@ ;; Open a file in project: (global-set-key (kbd "C-c f") 'project-find-file) -;; Interactively filter lines in current buffer: -(global-set-key (kbd "C-c o") 'helm-occur) +;; Use swiper instead of isearch +(global-set-key "\C-s" 'swiper) (provide 'bindings) |