Simplify helm setup

This commit is contained in:
Daniel - 2019-12-20 18:03:50 +01:00
parent 08e22cb698
commit 339badc995
No known key found for this signature in database
GPG Key ID: 1C7071A75BB72D64
1 changed files with 3 additions and 4 deletions

View File

@ -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))