Remove doom!-order dependency

The doom-init-modules-hook will do the work at the correct timing
This commit is contained in:
Gerry Agbobada 2020-08-15 10:51:09 +02:00 committed by Gerry Agbobada
parent 911d7cb82c
commit 3ef2531356
No known key found for this signature in database
GPG key ID: BE26DBAFD866BE34
2 changed files with 94 additions and 96 deletions

View file

@ -17,6 +17,7 @@
(doom! :input
;;chinese
;;japanese
;;layout ; auie,ctsrnm is the superior home row
:completion
company ; the ultimate code completion backend
@ -179,8 +180,4 @@
:config
;;literate
(default +bindings +smartparens)
:input
;;layout ; auie,ctsrnm is the superior home row
)
(default +bindings +smartparens))

View file

@ -8,10 +8,11 @@
(doom-bepo-rotate-collection-keymaps-h-builder doom-bepo-cr-rotation-style))
(add-hook 'evil-collection-setup-hook #'doom-bepo--evil-collection-hook)
(setq avy-keys '(?a ?u ?i ?e ?c ?, ?t ?s ?r ?n))
(add-transient-hook! 'doom-init-modules-hook
(setq avy-keys '(?a ?u ?i ?e ?, ?c ?t ?s ?r ?n))
;; :ui window-select settings, ignoring +numbers flag for now
(after! ace-window
(setq aw-keys '(?a ?u ?i ?e ?c ?, ?t ?s ?r ?n)))
(setq aw-keys '(?a ?u ?i ?e ?, ?c ?t ?s ?r ?n)))
(after! switch-window
(setq switch-window-shortcut-style 'qwerty
switch-window-qwerty-shortcuts '("a" "u" "i" "e" "," "c" "t" "s" "r")))
@ -100,4 +101,4 @@
magit-process-mode-map
magit-refs-mode-map)))
(after! evil-easymotion
(doom-bepo-rotate-bare-keymap '(evilem-map) doom-bepo-cr-rotation-style))
(doom-bepo-rotate-bare-keymap '(evilem-map) doom-bepo-cr-rotation-style)))