APR 08,2011Emacs, lisp, sbcl, slime, and Windows
Someone asked today how to configure the slime + sbcl development environment in windows. It was previously configured, but it is useless now. General configuration steps.
Download the Windows version of Emacs and find it by yourself.
Slime of sbcl
After the download, install Emacs first.
The. emacs file is not automatically generated when Emacs is installed by default. You need to create this file. Manual installation is not recommended,
Directly operate emacs-> options-> Save options.
OK. The status bar will prompt you after you have created it.
Then decompress the slime file to the. emacs file directory at the same level. emacs. D. It can be placed elsewhere.
Then load-path the directory. You need to write in. emacs
C-x C-F: Input ~ /. Emacs is enabled.
Add the followingCode
(Setq load-path (Cons "~ /Emacs. d/slime "load-path) If you place it on another disk or path, modify it by yourself.
(Setq slime-lisp-implementations '(sbcl ("sbcl"); set the interpreter to be used
(Require 'slime); load the slime
(Slime-setup '(slime-Fancy); clear the screen to make slime look better
Start Input
M-X: slime press enter to start loading .......
: