diff options
author | Vincent Ambo <tazjin@gmail.com> | 2017-10-15T14·31+0200 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2017-10-15T14·31+0200 |
commit | dadb4b4fed3954fbd5490ca15c7ddae67099ab53 (patch) | |
tree | 4143fc17131eda9d827bf41400cdcaddb7b5f5fc /init/settings.el | |
parent | 867ea97fd943a10313dce16b668eb6fa45d3a69c (diff) |
feat: Ostensibly enable fuzzy matching in Helm
Diffstat (limited to 'init/settings.el')
-rw-r--r-- | init/settings.el | 4 |
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) |