From 339badc995012a1a895d984e11f1cb96e1194241 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Fri, 20 Dec 2019 18:03:50 +0100 Subject: [PATCH] Simplify helm setup --- init.el | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/init.el b/init.el index 557aff1..4622fd3 100644 --- a/init.el +++ b/init.el @@ -1922,9 +1922,6 @@ With given ARG, display files in `db/important-document-path’." (use-package hippie-exp :commands (hippie-expand)) -(use-package helm-config - :init (setq helm-command-prefix-key "C-c h")) - (use-package helm :ensure t :commands (helm-show-kill-ring) @@ -1932,7 +1929,8 @@ With given ARG, display files in `db/important-document-path’." :bind (:map helm-command-map ("#" . helm-emms) ("P" . helm-pages)) - :init (setq helm-input-idle-delay 0.0 + :init (setq helm-command-prefix-key "C-c h" + helm-input-idle-delay 0.0 helm-buffers-fuzzy-matching t helm-mode-fuzzy-match t helm-autoresize-min-height 20 @@ -1950,6 +1948,7 @@ With given ARG, display files in `db/important-document-path’." helm-buffer-skip-remote-checking t) :config (progn (eval-when-compile + (require 'helm-config) (require 'helm-mode) (require 'helm-buffers) (require 'helm-ring))