org-mode/litorgy/init.el
Eric Schulte 2ecd87c787 fold-able (hide-able) code blocks
Using org-cycle, just hit [TAB] with the point on the =#+BEGIN_SRC=
  line of a source-code block.
2009-04-17 14:37:08 -07:00

46 lines
1.3 KiB
EmacsLisp

;;; 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)
(load "htmlize.el") ;; other versions of htmlize can cause export problems
(require 'litorgy)
(require 'litorgy-ref)
(require 'litorgy-ui)
;; language specific files
(require 'litorgy-script)
(require 'litorgy-shell)
(require 'litorgy-lisp)
(require 'litorgy-R)
(message "litorgy loaded")
;;; init.el ends here