Skip to content

Latest commit

 

History

History
101 lines (64 loc) · 2.86 KB

install.md

File metadata and controls

101 lines (64 loc) · 2.86 KB
layout title date
post
Install
2014-03-16 04:01:52 -0700

To install org-trello in your emacs, you need a few steps.

Package

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.

Melpa

(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.

Melpa-stable

(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.

Install

Use standard emacs installation:

M-x package-install RET org-trello RET

Load org-trello

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")))

Alternative install

Tarball

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

Git + Cask (dev)

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