From d42946153409fbb0bd382895c44e29b05d25243c Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Thu, 16 Oct 2025 02:15:09 -0500 Subject: refactor: org-store-link: move keybinding to org-config --- modules/org-config.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'modules/org-config.el') diff --git a/modules/org-config.el b/modules/org-config.el index 524ff290..aa91f7e1 100644 --- a/modules/org-config.el +++ b/modules/org-config.el @@ -13,7 +13,6 @@ (defvar org-archive-location (concat sync-dir "/archives/archive.org::datetree/") "Location of the archive file. - The archive file is where org entries that are archived via org-archive-subtree-default are placed.") @@ -50,9 +49,11 @@ org-archive-subtree-default are placed.") (setq org-image-actual-width '(500)) ;; keep image sizes in check (setq org-yank-image-save-method 'attach) ;; attach images; save to data directory - (setq org-bookmark-names-plist nil) ;; don't set org-capture bookmarks + ;; make org-store-link binding global + (global-set-key (kbd "C-c l") 'org-store-link) + ;; force pdfs exported from org to open in emacs (add-to-list 'org-file-apps '("\\.pdf\\'" . emacs))) -- cgit v1.2.3