我一直在尝试org-babel 教程,该教程描述了如何将大部分 emacs init.el 文件放入 org 文件中。但是,我想使用 org-mode 8(主要用于新的导出器)并且我使用的是 gnu emacs 24.3.1(用于 windows),它内置了 org-mode 7.9,所以我安装了 org-mode从elpa 包管理器,而不是使用内置版本。
我的问题是emacs加载了emacs附带的org-mode,而不是我在elpa中安装的。有没有办法加载 elpa 组织模式?
这是我的 init.el,从 org-babel 教程修改为(我认为)指向我的 org-mode 发行版 - 但我的 emacs-lisp 知识很少,所以我真的不知道它在做什么。
;;; From http://orgmode.org/worg/org-contrib/babel/intro.html#literate-programming
;;; init.el --- Where all the magic begins
;;
;; This file loads Org-mode and then loads the rest of our Emacs initialization from Emacs lisp
;; embedded in literate Org-mode files.
;; Load up Org Mode and (now included) Org Babel for elisp embedded in Org Mode files
(setq dotfiles-dir (file-name-directory (or (buffer-file-name) load-file-name)))
(let* ((org-dir (expand-file-name
"elpa" (expand-file-name
"org-plus-contrib-20130624" )))
(org-contrib-dir (expand-file-name
"lisp" (expand-file-name
"contrib" (expand-file-name
".." org-dir))))
(load-path (append (list org-dir org-contrib-dir)
(or load-path nil))))
;; load up Org-mode and Org-babel
(require 'org-install)
(require 'ob-tangle))
;; load up all literate org-mode files in this directory
(mapc #'org-babel-load-file (directory-files dotfiles-dir t "\\.org$"))
;;; init.el ends here