Closed x61 closed 4 years ago
I think you are missing evil
package. Did you enable evil
module in .doom.d/init.el
? @x61
That did the trick. Thanks for your time
I have the same issue. I have (evil +everywhere)
in the init.el
.
Post your init.el
and packages.el
and lets check what still missing.
I went the route of Setup as Doom Private Module
.
This is my packages.el
. As I understand it, no manual edit is needed here.
``` ;; -*- no-byte-compile: t; -*- ;;; .doom.d/packages.el (package! winum) (package! evil-matchit) (package! ripgrep) (package! deadgrep) (package! color-theme-modern) (package! webpaste) (package! treemacs-persp) (package! yapfify) (package! zeal-at-point) (package! eterm-256color) ;;; Examples: ;; (package! some-package) ;; (package! another-package :recipe (:host github :repo "username/repo")) ;; (package! builtin-package :disable t) (package! solaire-mode :disable t) ```
This is the init.el
.
For good measure, this is config.el
:
Try to put :private spacemacs
to the end of doom!
section. So that every module will loaded before spacemacs module. This is the way how I did. If it works, I will update it in README. After your change, remember to run doom sync
.
I tested and confirmed that :private spacemacs
should be put after :default
section.
I am getting the following error message:
Error in private config: modules/spacemacs/+spacemacs.el, (void-function evil-set-initial-state)
I looked in the file but I could not find the functionevil-set-initial-state
being used in+spacemacs.el