Don't delay loading helm

This commit is contained in:
Lars Tveito 2020-03-17 17:13:03 +01:00
parent 3120e73302
commit 62a249e963

View File

@ -509,8 +509,8 @@
near the end of the configuration).
#+BEGIN_SRC emacs-lisp
(require 'helm)
(require 'helm-config)
(with-eval-after-load 'helm
(setq helm-split-window-in-side-p t
helm-M-x-fuzzy-match t
helm-buffers-fuzzy-matching t
@ -532,7 +532,7 @@
(helm-mode 1)
(helm-projectile-on)
(helm-adaptive-mode 1))
(helm-adaptive-mode 1)
#+END_SRC
*** Helm dash
@ -1259,7 +1259,6 @@
** Bindings for [[http://emacs-helm.github.io/helm/][Helm]]
#+BEGIN_SRC emacs-lisp
(with-eval-after-load 'helm
(define-key helm-map (kbd "<tab>") 'helm-execute-persistent-action)
(define-key helm-map (kbd "C-i") 'helm-execute-persistent-action)
(define-key helm-map (kbd "C-z") 'helm-select-action)
@ -1274,7 +1273,7 @@
(define-key custom-bindings-map (kbd "C-c h o") 'helm-occur)
(define-key custom-bindings-map (kbd "C-c h g") 'helm-google-suggest)
(define-key custom-bindings-map (kbd "M-i") 'helm-swoop)
(define-key custom-bindings-map (kbd "M-I") 'helm-multi-swoop-all))
(define-key custom-bindings-map (kbd "M-I") 'helm-multi-swoop-all)
#+END_SRC
** Bindings for [[https://github.com/bbatsov/projectile][Projectile]]