about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--init/settings.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/init/settings.el b/init/settings.el
index 1024d8199817..852bf17650a9 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)