emacs-prelude/docs/modules/common_lisp.md
Kostas Tsiligkiris 9ed0d772da [DOCS] Fix problem with Edit in github link
The link is created with docs in it, even if the mkdocs.yml file
mentions doc as the documentation folder. I am not aware if there is
any other dependency in the name doc, I have renamed it to docs and
changed it also in the mkdocs.yml file. It seems docs is hardcoded in
the readthedocs theme :(
2022-04-11 09:11:28 +03:00

34 lines
842 B
Markdown

# Prelude Common Lisp
!!! Note
This module builds on top of the shared [Lisp Base](lisp.md) module.
## lisp-mode
Not much to say here, as `lisp-mode` is configured in the "Lisp Base" module.
## SLIME
This module bundles [SLIME](https://common-lisp.net/project/slime/), a popular interactive
programming environment for SLIME, and enables many of its essential features.
SLIME supports many Common Lisp implementations:
* CMU Common Lisp (CMUCL)
* Steel Bank Common Lisp (SBCL)
* Clozure CL (a.k.a. OpenMCL)
* LispWorks
* Allegro CL
* CLISP
* Scieneer CL
* ECL
* Corman CL
* ABCL
The default config assumes the usage of [Clozure CL](https://github.com/Clozure/ccl) on macOS and
of [SBCL](http://www.sbcl.org/) everywhere else. That's something you can easily
tweak via `slime-default-lisp`.
You can start SLIME with `M-x slime`.