Description
I have got 2 Emacs instances, but it does not load in any of them.
Here are my configs:
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
In doom-Emacs
;; evil-motion-trainer-mode
(add-load-path! "~/.emacs.d/local-repo/evil-motion-trainer")
;; https://github.com/martinbaillie/evil-motion-trainer
(setq global-evil-motion-trainer-mode 1)
(setq evil-motion-trainer-threshold 3)
(setq evil-motion-trainer-super-annoying-mode t)
;; (setq emt-add-suggestion 'evil-next-line 'evil-avy-goto-char-timer)
;; See also: (emt-add-suggestions)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
and in Emacs normal with Evil
;; evil-motion-trainer-mode
(add-to-list 'load-path "~/_emacs.d_Orig/local-repo/evil-motion-trainer")
;; https://github.com/martinbaillie/evil-motion-trainer
(setq global-evil-motion-trainer-mode 1)
(setq evil-motion-trainer-threshold 3)
(setq evil-motion-trainer-super-annoying-mode t)
;; (setq emt-add-suggestion 'evil-next-line 'evil-avy-goto-char-timer)
;; See also: (emt-add-suggestions)
:(
Activity