Variable: org-startup-with-link-previews

org-startup-with-link-previews is a customizable variable defined in org.el.gz.

Value

nil

Documentation

Non-nil means show link previews when loading a new Org file.

This can also be configured on a per-file basis by adding one of the following lines anywhere in the buffer:
   #+STARTUP: linkpreviews
   #+STARTUP: nolinkpreviews

This variable was added, or its default value changed, in Emacs 29.4.

Aliases

org-startup-with-inline-images

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defcustom org-startup-with-link-previews nil
  "Non-nil means show link previews when loading a new Org file.
This can also be configured on a per-file basis by adding one of
the following lines anywhere in the buffer:
   #+STARTUP: linkpreviews
   #+STARTUP: nolinkpreviews"
  :group 'org-startup
  :version "29.4"
  :type 'boolean)