EFLS / zetteldeft

A Zettelkasten system! Or rather, some functions on top of the emacs deft package.
https://efls.github.io/zetteldeft
GNU General Public License v3.0
394 stars 42 forks source link

classic-keybindings not loading #109

Closed OrionRandD closed 3 years ago

OrionRandD commented 3 years ago

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 3 years ago

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.

OrionRandD commented 3 years ago

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 :)