Skip to main content
Department of Information Technology
; These are commands I put into my .emacs file to be able to run
; Erlang, Common Lisp and Haskell. I also had to install the
; implementations, (Erlang, SBCL and GHC), Emacs, and the emacs modes
; for each language. All installations where made using the Synaptic
; Package Manager.
;
; Please note that the programs "sbcl" and "ghci" may reside on other
; locations on your computer. You can check by using the command
; "which ghci" at the command line.

;;; Erlang
(require 'erlang-start)

;; Strongly recommend this as well for faster feedback
(require 'erlang-flymake)


;;;; Slime/SBCL
(setq inferior-lisp-program "/usr/bin/sbcl --noinform")


;;; Haskell
(require 'inf-haskell)  
(setq haskell-program-name "/usr/bin/ghci")

Updated  2012-11-08 09:26:25 by Cons T. Åhs.