From 284c8327c95bb0c71b111ebf95723a35a478295c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20Benencia?= Date: Sun, 23 Jun 2019 11:43:30 -0700 Subject: Add emacs config --- .emacs.local.d/modes/helm.el | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .emacs.local.d/modes/helm.el (limited to '.emacs.local.d/modes/helm.el') diff --git a/.emacs.local.d/modes/helm.el b/.emacs.local.d/modes/helm.el new file mode 100644 index 0000000..55a4c19 --- /dev/null +++ b/.emacs.local.d/modes/helm.el @@ -0,0 +1,22 @@ +(use-package helm + :bind (("M-x" . helm-M-x) + ("M-" . helm-find-files) + ([f10] . helm-buffers-list) + ([S-f10] . helm-recentf)) + :config + (setq helm-mode-fuzzy-match t) + (setq helm-completion-in-region-fuzzy-match t) + ) + + +(setq helm-M-x-fuzzy-match t + helm-bookmark-show-location t + helm-buffers-fuzzy-matching t + helm-completion-in-region-fuzzy-match t + helm-file-cache-fuzzy-match t + helm-imenu-fuzzy-match t + helm-mode-fuzzy-match t + helm-locate-fuzzy-match t + helm-quick-update t + helm-recentf-fuzzy-match t + helm-semantic-fuzzy-match t) -- cgit v1.2.3