Variable: org-startup-indented

org-startup-indented is a customizable variable defined in org.el.gz.

Value

nil

Documentation

Non-nil means turn on org-indent-mode(var)/org-indent-mode(fun) on startup.

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

   #+STARTUP: indent
   #+STARTUP: noindent

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defcustom org-startup-indented nil
  "Non-nil means turn on `org-indent-mode' on startup.
This can also be configured on a per-file basis by adding one of
the following lines anywhere in the buffer:

   #+STARTUP: indent
   #+STARTUP: noindent"
  :group 'org-structure
  :type '(choice
	  (const :tag "Not" nil)
	  (const :tag "Globally (slow on startup in large files)" t)))