mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-11-23 07:18:53 +00:00
49 lines
1.4 KiB
EmacsLisp
49 lines
1.4 KiB
EmacsLisp
;;; litorgy-init.el --- loads litorgy
|
|
|
|
;; Copyright (C) 2009 Eric Schulte
|
|
|
|
;; Author: Eric Schulte
|
|
;; Keywords: literate programming, reproducible research
|
|
;; Homepage: http://orgmode.org
|
|
;; Version: 0.01
|
|
|
|
;;; License:
|
|
|
|
;; This program is free software; you can redistribute it and/or modify
|
|
;; it under the terms of the GNU General Public License as published by
|
|
;; the Free Software Foundation; either version 3, or (at your option)
|
|
;; any later version.
|
|
;;
|
|
;; This program is distributed in the hope that it will be useful,
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
;; GNU General Public License for more details.
|
|
;;
|
|
;; You should have received a copy of the GNU General Public License
|
|
;; along with GNU Emacs; see the file COPYING. If not, write to the
|
|
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
;; Boston, MA 02110-1301, USA.
|
|
|
|
;;; Commentary:
|
|
|
|
;; for more information see the comments in litorgy.el
|
|
|
|
;;; Code:
|
|
(require 'org)
|
|
(require 'org-exp-blocks)
|
|
(load "htmlize.el") ;; other versions of htmlize can cause export problems
|
|
(require 'litorgy)
|
|
(require 'litorgy-ref)
|
|
(require 'litorgy-ui)
|
|
(require 'litorgy-exp)
|
|
(require 'litorgy-table)
|
|
|
|
;; language specific files
|
|
(require 'litorgy-script)
|
|
(require 'litorgy-shell)
|
|
(require 'litorgy-lisp)
|
|
(require 'litorgy-R)
|
|
|
|
(provide 'litorgy-init)
|
|
;;; litorgy-init.el ends here
|