aboutsummaryrefslogtreecommitdiff
path: root/bard-emacs-modules/bard-emacs-org.el
diff options
context:
space:
mode:
authorBardofSprites <[email protected]>2025-01-17 07:24:49 -0500
committerBardofSprites <[email protected]>2025-01-17 07:24:49 -0500
commit5c82790d5f28f7737aa9d2b579705fbf00364fb7 (patch)
tree2af586fc6e5c6ff9dc993bb98f474087c17d4a57 /bard-emacs-modules/bard-emacs-org.el
parent4b2f8bacb62b36a8ea23d4c6a7bd0506cddcd03d (diff)
org navigation and refile
Diffstat (limited to 'bard-emacs-modules/bard-emacs-org.el')
-rw-r--r--bard-emacs-modules/bard-emacs-org.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/bard-emacs-modules/bard-emacs-org.el b/bard-emacs-modules/bard-emacs-org.el
index 391ad38..ea9f376 100644
--- a/bard-emacs-modules/bard-emacs-org.el
+++ b/bard-emacs-modules/bard-emacs-org.el
@@ -13,11 +13,13 @@
("C-c M-c" . count-words-region)
("C-c C-M-c" . count-words)
("C-c l" . org-store-link)
+ ("C-c j" . org-goto)
)
:bind
(("C-c c" . org-capture))
- ;; :config
- ;; (setq org-num-max-level 2)
+ :config
+ (setq org-goto-interface 'outline-path-completion)
+ (setq safe-local-variable-values '((org-refile-targets (nil :maxlevel . 3))))
;; :hook
;; ((org-mode . org-num-mode))
)