diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2009-02-05 23:50:13 +0100 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2009-02-05 23:50:13 +0100 |
commit | 5c83238aa002a0590bd42f37a3344fda24ca547a (patch) | |
tree | 3f206b58cf7f81e9694af707ebd7a7c8c23a54c7 | |
parent | 22542ce5b9ad5c9e25806f5d42cb33c6ae47f66c (diff) | |
download | geiser-5c83238aa002a0590bd42f37a3344fda24ca547a.tar.gz geiser-5c83238aa002a0590bd42f37a3344fda24ca547a.tar.bz2 |
Emacs startup file
-rw-r--r-- | elisp/geiser.el | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/elisp/geiser.el b/elisp/geiser.el new file mode 100644 index 0000000..2ce4e82 --- /dev/null +++ b/elisp/geiser.el @@ -0,0 +1,56 @@ +;;; geiser.el --- main geiser file + +;; Copyright (C) 2009 Jose Antonio Ortega Ruiz + +;; Author: Jose Antonio Ortega Ruiz <jao@gnu.org> +;; Keywords: languages, tools + +;; 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 of the License, 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 this program. If not, see <http://www.gnu.org/licenses/>. + +;;; Commentary: + +;; Autoloads and basic setup for geiser. + +;;; Code: + + +;;; Locations: + +(defvar geiser-root-dir nil + "Geiser's root directory.") + +(defvar geiser-elisp-dir nil + "Directory containing Geiser's Elisp files.") + +(defvar geiser-scheme-dir nil + "Directory containing Geiser's Scheme files.") + +(setq geiser-elisp-dir (file-name-directory load-file-name)) +(setq geiser-scheme-dir (expand-file-name "../scheme/" geiser-elisp-dir)) +(setq geiser-root-dir (expand-file-name "../" geiser-elisp-dir)) + +(add-to-list 'load-path geiser-elisp-dir) + + +;;; Autoloads: + +(autoload 'run-guile "geiser-repl.el" + "Start a Geiser Guile REPL, or switch to a running one" t) + +(autoload 'switch-to-guile "geiser-repl.el" + "Start a Geiser Guile REPL, or switch to a running one" t) + + +(provide 'geiser) +;;; geiser.el ends here |