81

Org Emacs lisp Package Archive

 6 years ago
source link: https://orgmode.org/elpa.html
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

Features Releases Updates Install Manuals Worg Contribute

Org Emacs lisp Package Archive (deprecated)

For versions <= 9.5, orgmode.org hosts Org ELPA archives.

Beware that no new Org versions will be released on Org ELPA after 9.5.

Add this to your Emacs init file to be able to list the Org mode archives:

(require 'package)
(add-to-list 'package-archives '("org" . "https://orgmode.org/elpa/") t)

Then M-x list-packages RET will list both the latest org and org-plus-contrib packages.

orgContains the same set of files that are included in GNU Emacs.

org-plus-contribContains these files plus all contribs files, the ones you used to find in contrib/ from the git repo.

Installation

By default, Emacs loads packages after it loads your Emacs init file.

We recommend intializing packages as early as possible in your Emacs init file so that your Org configuration will be correctly handled:

;; -*- emacs-lisp -*-
(package-initialize)                ;; Initialize & Install Package
;; (setq org-...)                   ;; Your custom settings

The package initialization should happen before you require Org and set any Org options.

Also, you may want to set up Package correctly before initializing it:

;; -*- emacs-lisp -*-
(unless package-archive-contents    ;; Refresh the packages descriptions
  (package-refresh-contents))
(setq package-load-list '(all))     ;; List of packages to load
(unless (package-installed-p 'org)  ;; Make sure the Org package is
  (package-install 'org))           ;; installed, install it if not
(package-initialize)                ;; Initialize & Install Package
;; (setq org-...)                   ;; Your custom settings

See the GNU Emacs Package manual for details.

Questions?

Report any problem and ask any question on the Org mode mailing list.


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK