spacemacs/contrib/slime
Christoph Paulik ff8cd06046 Fix various issues with org markup
- lists were not correctly indented sometimes
- **note** and such things do not exist in org
- Note and Important
- Change Feature list to heading
- Change TODOS to actual org TODOS
- Add TOC to python layer
- list indentation
- some typos I could not leave unchanged
- TODO formatting
- List indentation
- typos
- wrong markup

fix conversion issues
2015-06-11 21:31:42 -04:00
..
img
extensions.el Replace defvar with setq for pre and post extensions variables 2015-04-18 23:57:27 -04:00
packages.el Disable smartparens in SLIME REPL 2015-05-10 01:18:44 -04:00
README.org Fix various issues with org markup 2015-06-11 21:31:42 -04:00

SLIME contribution layer for Spacemacs

/TakeV/spacemacs/media/commit/ff8cd060466a2d6b19fb4677473b3db4f38d75dc/contrib/slime/img/slime.png

Description

A Spacemacs contribution layer for SLIME.

Install

To use this contribution, add it to your ~/.spacemacs

  (setq-default dotspacemacs-configuration-layers '(slime))

This layer defaults to using sbcl. If you wan to use a different implementation of Common Lisp, you can specify it in your ~/.spacemacs

  (defun dotspacemacs/config ()
    (setq inferior-lisp-program "/path/to/your/lisp"))

Key Bindings

This layer doesn't yet include Spacemacsy keybindings. The following is a list of some of SLIME's default keybindings.

Key Binding Description
C-c Prefix Command
C-c C-k Compile and load the current buffer's file.
C-c C-c Compile the top-level form at point.
C-c C-d C-d Describe symbol.
C-c C-d C-a Apropos search.
M-n slime-repl-next-input
M-p slime-repl-previous-input
C-M-x lisp-eval-defun
C-h m check emacs mode help for all of SLIME's keybindings

Future Work

TODO Add proper Spacemacs keybindings