From 3b721d83462698bf4a4f019f631d6ef66fb3b26c Mon Sep 17 00:00:00 2001 From: finga Date: Wed, 15 Nov 2023 11:43:00 +0100 Subject: [PATCH] org: Reduce configuration Remove the configuration of the mode as this should be superfluous and remove the keybinding for the org-agenda as this was never used by me. --- .emacs.d/config/org.el | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.emacs.d/config/org.el b/.emacs.d/config/org.el index 585189d..5b92c32 100644 --- a/.emacs.d/config/org.el +++ b/.emacs.d/config/org.el @@ -1,7 +1,5 @@ (use-package org :ensure t - :init (setq org-export-backends '(ascii html icalendar latex odt beamer)) - :mode ("\\.org\\'" . org-mode) - :bind (("C-c a" . org-agenda))) + :init (setq org-export-backends '(ascii html icalendar latex odt beamer))) (setq org-directory "~/org")