I'm trying to use org-checklist
. The documentation says that I should 'Ensure the org contrib directory is in load-path'. Where is the contrib directory?
Asked
Active
Viewed 3,373 times
9

Dan
- 32,584
- 6
- 98
- 168

user2355213
- 191
- 1
- 2
2 Answers
9
Checking out the git version of Org, it's in ./contrib
. To install contrib, you could use Org ELPA. As pointed out by Erik, you should get the org-plus-contrib
package from Org ELPA.
You could also use a git-checkout, see Keeping Current and more on installing Org.

rasmus
- 2,682
- 13
- 20
-
1Note that with Org ELPA you have to install the `org-plus-contrib` package. The `org` packages this and ELPA provide don't include the contrib packages. – erikstokes Jan 06 '15 at 01:09
3
The location of the contrib
directory depends on where you have org-mode
installed. A simple way to tell is to M-x find-library RET org-contribdir
. The commentary from the latter:
The sole purpose of this file is to be located in the same place as where the contributed Org files are located, typically in the contrib/lisp directory of the Org-mode distribution. This is to make sure that the command `org-reload' can reliably locate contributed org files.

Dan
- 32,584
- 6
- 98
- 168