From dadb4b4fed3954fbd5490ca15c7ddae67099ab53 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sun, 15 Oct 2017 16:31:39 +0200 Subject: [PATCH] feat: Ostensibly enable fuzzy matching in Helm --- init/settings.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/init/settings.el b/init/settings.el index 1024d8199..852bf1765 100644 --- a/init/settings.el +++ b/init/settings.el @@ -4,6 +4,10 @@ ;; Make Helm go! (require 'helm-config) + +;; Enable fuzzy matching in Helm +(setq helm-mode-fuzzy-match t + helm-completion-in-region-fuzzy-match t) (global-set-key (kbd "M-x") #'helm-M-x) (global-set-key (kbd "C-x r b") #'helm-filtered-bookmarks) (global-set-key (kbd "C-x C-f") #'helm-find-files)