Kawatab's tips

This is my tips for using and setting up Computer, mainly Linux. (English | Magyar | 日本語)

Emacs

Installing SBCL

Installing

# aptitude install sbcl

emacs settings

Write the following code into ~/.emacs or ~/.emacs.d/init.el

(add-to-list 'load-path "/usr/share/common-lisp/source/slime")
(setq inferior-lisp-program "/usr/bin/sbcl")
(slime-setup)

Start REPL

M-x slime

Exit REPL

(sb-ext::quit)

Geiser

http://docs.racket-lang.org/guide/Emacs.html

Geiser provides a programming environment where the editor is tightly integrated with the Racket REPL. Programmers accustomed to environments such as Slime or Squeak should feel at home using Geiser. Geiser requires GNU Emacs 23.2 or better.