From 5e9b23f1b826b821aaeb49f38e097bdad30cd19f Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Fri, 31 Oct 2025 09:57:33 +0100 Subject: [PATCH] Display Org images by default When images are used, they should be displayed, shouldn't they? And when images are not wide enough to fill the complete text width (= fill-column), I find it nicer to display them centered. --- init.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/init.el b/init.el index 2f68903..d3bd595 100644 --- a/init.el +++ b/init.el @@ -808,6 +808,8 @@ split horizontally again, but this extra work should not matter much." org-id-link-to-org-use-id t org-return-follows-link nil org-hide-emphasis-markers t + org-startup-with-inline-images t + org-image-align 'center org-blank-before-new-entry '((heading . t) (plain-list-item . auto))