Bruno Arine

How to fix Emacs org-super-agenda keymap with evil-mode on

org-super-agenda default’s config is incompatible with Doom Emacs keybindings. When we move the cursor to a date-containing line in the timegrid, trying to move past it will inevitably open the interactive calendar.

To avoid this behavior, add the following to your Emacs config file:

(use-package! org-super-agenda
  :after org-agenda
  :init
  (org-super-agenda-mode)
  :config
  (setq org-super-agenda-header-map (make-sparse-keymap)))