Variable: org-startup-align-all-tables

org-startup-align-all-tables is a customizable variable defined in org.el.gz.

Value

nil

Documentation

Non-nil means align all tables when visiting a file.

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

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defcustom org-startup-align-all-tables nil
  "Non-nil means align all tables when visiting a file.
This can also be configured on a per-file basis by adding one of
the following lines anywhere in the buffer:
   #+STARTUP: align
   #+STARTUP: noalign"
  :group 'org-startup
  :type 'boolean)