From c3095772cde58532ea023aae2b979f430593e3c1 Mon Sep 17 00:00:00 2001 From: rearman Date: Tue, 16 Jun 2026 17:03:58 -0400 Subject: [PATCH] org options cleanup move backend addition into use-package call --- config.org | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/config.org b/config.org index d34108c..ea70e07 100644 --- a/config.org +++ b/config.org @@ -190,12 +190,11 @@ Sly really doesn't play well with elodc in the minibuffer, so here are some sett (use-package org :config (require 'org-mouse) + (add-to-list 'org-export-backends 'md) :bind (("C-c l" . org-store-link) ("C-c a" . org-agenda) ("C-c c" . org-capture) - ("" . org-clock-out) - ("" . org-clock-goto) :map org-mode-map ("M-" . org-shiftmetaright) ("M-" . org-shiftmetaleft) @@ -207,8 +206,7 @@ Sly really doesn't play well with elodc in the minibuffer, so here are some sett ("C-M-b" . org-backward-heading-same-level) ("C-M-f" . org-forward-heading-same-level) ("C-M-p" . org-previous-visible-heading) - ("C-M-n" . org-next-visible-heading) - ("" . org-clock-in))) + ("C-M-n" . org-next-visible-heading))) (use-package org-transclusion :after @@ -219,8 +217,6 @@ Sly really doesn't play well with elodc in the minibuffer, so here are some sett *** Configuration **** General options #+BEGIN_SRC emacs-lisp - (with-eval-after-load 'org (add-to-list 'org-export-backends 'md)) - (setq org-M-RET-may-split-line nil org-cycle-inline-images-display t org-cycle-separator-lines 0 -- 2.39.5