EFLS/zetteldeft

classic-keybindings not loading

OrionRandD opened this issue · 2 comments

I use doom-emacs and classic-keybinding are not loading upon starting Emacs.
here is my config:

(use-package! zetteldeft
:after deft
:config
(zetteldeft-set-classic-keybindings)
(setq deft-new-file-format zetteldeft-id-format)
)

EFLS commented

Not really familiar with the Doom-way, but since you use :after deft, the question is: when is Deft loaded? Can you test either (1) dropping the :after line, or (2) replacing :config with :init?

Also (setq deft-new-file-format zetteldeft-id-format) is not needed as this is already part of zetteldeft.el.

Not really familiar with the Doom-way, but since you use :after deft, the question is: when is Deft loaded? Can you test either (1) dropping the :after line, or (2) replacing :config with :init?

Also (setq deft-new-file-format zetteldeft-id-format) is not needed as this is already part of zetteldeft.el.

worked with this setup

(use-package! zetteldeft
;; :after deft
:init
(zetteldeft-set-classic-keybindings)
;; (setq deft-new-file-format zetteldeft-id-format)
)

Thx a lot
:)