Variable: org-startup-numerated

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

Value

nil

Documentation

Non-nil means turn on org-num-mode(var)/org-num-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: num
   #+STARTUP: nonum

This variable was added, or its default value changed, in Org version
9.4.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defcustom org-startup-numerated nil
  "Non-nil means turn on `org-num-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: num
   #+STARTUP: nonum"
  :group 'org-structure
  :package-version '(Org . "9.4")
  :type '(choice
	  (const :tag "Not" nil)
	  (const :tag "Globally" t)))