Emacs org-mode

网站: http://orgmode.org

下载:http://orgmode.org/org-mode-download.html 下载最新版本的

安装:http://orgmode.org/manual/Installation.html#Installation

Important: If you are using a version of Org that is part of the Emacsdistribution or an XEmacs package, please skip this section and go directlytoActivation. To see what version of Org (if any) is part of yourEmacs distribution, typeM-x load-library RET org and then M-xorg-version.

如果你使用的是emcas自身带的org那么可以直接去参考activation章节了

查看版本

M-x load-library回车

org回车

M-x org-version

我的版本是Org-mode version 6.21

暂时配置文件可以如下,还没有完善

;; org
(require 'org)
(require 'org-publish)
;;    使用.org扩展的文件都使用Org mode打开
(add-to-list 'auto-mode-alist '("\\.org\\'" . org-mode))
(add-hook 'org-mode-hook 'turn-on-font-lock)
(add-hook 'org-mode-hook
(lambda () (setq truncate-lines nil)))

(global-set-key "\C-cl" 'org-store-link)
(global-set-key "\C-cc" 'org-capture)
(global-set-key "\C-ca" 'org-agenda)
(global-set-key "\C-cb" 'org-iswitchb)


你可能感兴趣的:(Emacs org-mode)