about summary refs log tree commit diff
path: root/init/settings.el
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@gmail.com>2017-10-15T14·31+0200
committerVincent Ambo <tazjin@gmail.com>2017-10-15T14·31+0200
commitdadb4b4fed3954fbd5490ca15c7ddae67099ab53 (patch)
tree4143fc17131eda9d827bf41400cdcaddb7b5f5fc /init/settings.el
parent867ea97fd943a10313dce16b668eb6fa45d3a69c (diff)
feat: Ostensibly enable fuzzy matching in Helm
Diffstat (limited to 'init/settings.el')
-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)