todoist

概要

emacs-todoist は Todo 管理サービスである Todoist と連携するためのパッケージ。 org-mode に依存している。

インストール

まず以下のレシピを用意している

(:name emacs-todoist
       :website "https://github.com/abrochard/emacs-todoist"
       :description "Emacs interface to Todoist"
       :type github
       :pkgname "abrochard/emacs-todoist")

その上で以下のようにしてインストールしている

(el-get-bundle emacs-todoist)

設定

API キーを設定するので別ファイルに分離している。いつか .authinfo.gpg に移動しようかなと思っているけどそもそも最近 TODOIST 使ってない……

(with-eval-after-load 'todoist
  (setq todoist-token (funcall (plist-get (nth 0 (auth-source-search :host "todoist.com" :max 1)) :secret))))