dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit 931c1cffa82bf34baaf557754618a290687642f8
parent 4c47a25e15e7cee437085f1a17ba740d57da68a4
Author: Alex Balgavy <alexander.balgavy@spaceapplications.com>
Date:   Fri,  9 Feb 2024 20:56:08 +0100

emacs: misc org settings

Diffstat:
Memacs/config.org | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/emacs/config.org b/emacs/config.org @@ -1547,6 +1547,10 @@ Install Org and require additional components that I use. #+begin_src emacs-lisp (use-package org :custom + (org-outline-path-complete-in-steps nil "Complete path all at once (needed for completion frameworks") + (org-goto-interface 'outline-path-completion "Use outline path completion for org-goto, instead of its weird interface") + (org-insert-heading-respect-content t "Insert headings after current subtree") + (org-id-link-to-org-use-id 'create-if-interactive "If org-store-link is called directly, create an ID.") (org-return-follows-link t "Easier link following. Actual enter is still possible with ~C-q C-j~.") (org-hide-emphasis-markers t "Don't show italics/bold markers") (org-babel-python-command "python3")