fix evil collection
This commit is contained in:
parent
e49ba2d4bd
commit
c3b570d8c9
6
conf.el
6
conf.el
|
@ -101,6 +101,8 @@
|
||||||
helm-imenu-fuzzy-match t
|
helm-imenu-fuzzy-match t
|
||||||
helm-scroll-amount 8)
|
helm-scroll-amount 8)
|
||||||
|
|
||||||
|
;; I liked the way ido-veritcal worked
|
||||||
|
;; less invasive...
|
||||||
(add-to-list 'display-buffer-alist
|
(add-to-list 'display-buffer-alist
|
||||||
`(,(rx bos "*helm" (* not-newline) "*" eos)
|
`(,(rx bos "*helm" (* not-newline) "*" eos)
|
||||||
(display-buffer-in-side-window)
|
(display-buffer-in-side-window)
|
||||||
|
@ -1311,7 +1313,9 @@ and reverts all todo keywords to TODO"
|
||||||
:ensure t
|
:ensure t
|
||||||
:after evil
|
:after evil
|
||||||
:init
|
:init
|
||||||
(evil-collection-init '(which-key helm minibuffer mu4e)))
|
(setq evil-collection-modes-list '(which-key helm minibuffer mu4e))
|
||||||
|
:config
|
||||||
|
(evil-collection-init))
|
||||||
|
|
||||||
(add-hook 'org-mode-hook
|
(add-hook 'org-mode-hook
|
||||||
(lambda ()
|
(lambda ()
|
||||||
|
|
4
conf.org
4
conf.org
|
@ -1613,7 +1613,9 @@ I like being evil. All package and custom bindings go here.
|
||||||
:ensure t
|
:ensure t
|
||||||
:after evil
|
:after evil
|
||||||
:init
|
:init
|
||||||
(evil-collection-init '(which-key helm minibuffer mu4e)))
|
(setq evil-collection-modes-list '(which-key helm minibuffer mu4e))
|
||||||
|
:config
|
||||||
|
(evil-collection-init))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
** local
|
** local
|
||||||
*** org-mode
|
*** org-mode
|
||||||
|
|
Loading…
Reference in New Issue