Quickly set up a LISP IDE with Emacs
Install a LISP compiler. We’ll use Steel Bank Common Lisp. Extract the downloaded archive and run install.sh. If the binary location is not /opt/sbcl/bin/sbcl note it. Install emacs sudo apt-get install emacs Set up the MELPA repository adding this to your ~/.emacs file (require 'package) ;; You might already have this line (add-to-list ‘package-archives ‘(“melpa” . “https://melpa.org/packages/")) (when (< emacs-major-version 24) ;; For important compatibility libraries like cl-lib (add-to-list ‘package-archives ‘(“gnu” ....