Browse Source

added initialization file which can be used to load litorgy

Eric Schulte 16 years ago
parent
commit
b809734a47
1 changed files with 40 additions and 0 deletions
  1. 40 0
      litorgy/init.el

+ 40 - 0
litorgy/init.el

@@ -0,0 +1,40 @@
+;;; init.el --- loads litorgy
+
+;; Copyright (C) 2009 Eric Schulte, Dan Davison, Austin F. Frank
+
+;; Author: Eric Schulte, Dan Davison, Austin F. Frank
+;; 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 'litorgy)
+(require 'litorgy-reference)
+
+;; language specific files
+(require 'litorgy-lisp)
+(require 'litorgy-script)
+
+;;; init.el ends here