1
0
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-12-29 11:02:33 +00:00

ob: adding ob-init.el to load everything

This commit is contained in:
Eric Schulte 2010-06-14 16:36:56 -07:00
parent b746686dfe
commit 116d9cfa85

12
lisp/babel/ob-init.el Normal file
View File

@ -0,0 +1,12 @@
;;; ob-init.el --- working with code blocks in org-mode
(require 'ob)
(require 'ob-ref)
(require 'ob-exp)
(require 'ob-tangle)
(require 'ob-lob)
(require 'ob-comint)
(require 'ob-table)
(require 'ob-keys)
(provide 'ob-init)
;;; ob-init.el ends here