mirror of
https://github.com/larstvei/dot-emacs.git
synced 2024-11-26 07:28:31 +00:00
Don't delay loading helm
This commit is contained in:
parent
3120e73302
commit
62a249e963
7
init.org
7
init.org
@ -509,8 +509,8 @@
|
|||||||
near the end of the configuration).
|
near the end of the configuration).
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(require 'helm)
|
||||||
(require 'helm-config)
|
(require 'helm-config)
|
||||||
(with-eval-after-load 'helm
|
|
||||||
(setq helm-split-window-in-side-p t
|
(setq helm-split-window-in-side-p t
|
||||||
helm-M-x-fuzzy-match t
|
helm-M-x-fuzzy-match t
|
||||||
helm-buffers-fuzzy-matching t
|
helm-buffers-fuzzy-matching t
|
||||||
@ -532,7 +532,7 @@
|
|||||||
|
|
||||||
(helm-mode 1)
|
(helm-mode 1)
|
||||||
(helm-projectile-on)
|
(helm-projectile-on)
|
||||||
(helm-adaptive-mode 1))
|
(helm-adaptive-mode 1)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
*** Helm dash
|
*** Helm dash
|
||||||
@ -1259,7 +1259,6 @@
|
|||||||
** Bindings for [[http://emacs-helm.github.io/helm/][Helm]]
|
** Bindings for [[http://emacs-helm.github.io/helm/][Helm]]
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(with-eval-after-load 'helm
|
|
||||||
(define-key helm-map (kbd "<tab>") 'helm-execute-persistent-action)
|
(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-i") 'helm-execute-persistent-action)
|
||||||
(define-key helm-map (kbd "C-z") 'helm-select-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 o") 'helm-occur)
|
||||||
(define-key custom-bindings-map (kbd "C-c h g") 'helm-google-suggest)
|
(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-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
|
#+END_SRC
|
||||||
|
|
||||||
** Bindings for [[https://github.com/bbatsov/projectile][Projectile]]
|
** Bindings for [[https://github.com/bbatsov/projectile][Projectile]]
|
||||||
|
Loading…
Reference in New Issue
Block a user