layout | title | date |
---|---|---|
post |
Install |
2014-03-16 04:01:52 -0700 |
To install org-trello in your emacs, you need a few steps.
If not already configured, you need to prepare emacs to work with melpa or melpa-stable. For this, you need to install a snippet of code in your emacs configuration file.
Note org-trello's Marmalade package is no longer maintained. Use melpa-stable package instead.
(require 'package)
(add-to-list 'package-archives '("melpa" . "http://melpa.milkbox.net/packages/") t)
(package-initialize)
Then hit M-x eval-buffer to evaluate the buffer's contents.
(require 'package)
(add-to-list 'package-archives '("melpa-stable" . "http://melpa-stable.milkbox.net/packages/") t)
(package-initialize)
Then hit M-x eval-buffer to evaluate the buffer's contents.
Use standard emacs installation:
M-x package-install RET org-trello RET
Add this in your emacs configuration file ~/.emacs or ~/.emacs.d/init.el.
(require 'org-trello)
Note We do not recommend loading org-trello for each org-mode buffer (see org-trello/org-trello#209). org-trello's an org minor mode with trello abilities (which unfortunately limits org's power).
To activate org-trello only for specific files, there exists a custom variable dedicated to this:
Use this for example to activate org-trello
when opening /path/to/file0
and /path/to/file1
.
(custom-set-variables '(org-trello-files '("/path/to/file0" "/path/to/file1")))
Retrieve the tarball from github then:
wget https://github.com/org-trello/org-trello/releases/download/$VERSION/org-trello-$VERSION.tar -o /path/to/org-trello-$VERSION.tar
M-x package-install-file RET /path/to/org-trello-$VERSION.tar RET
An el-get recipe has been made for org-trello.
To install it through el-get:
M-x el-get-install RET org-trello RET
Clone org-trello from GitHub:
git clone http://github.com/org-trello/org-trello.git
You can use Cask to make a local tarball and install using Emacs:
make install package
Note install
will download Cask and package
will create an org-trello tarball archive containing org-trello.
Now install the built org-trello-$VERSION.tar
using Emacs.
M-x package-install-file RET /path/to/org-trello-$VERSION.tar RET