【Common Lisp 入门】配置开发环境 in Emacs

简介: 版权声明:转载请联系本人,感谢配合!本站地址:http://blog.csdn.net/nomasp https://blog.csdn.net/NoMasp/article/details/53706318 ...
版权声明:转载请联系本人,感谢配合!本站地址:http://blog.csdn.net/nomasp https://blog.csdn.net/NoMasp/article/details/53706318

安装 Emacs

sudo apt-get install emacs

安装 Common Lisp 环境

sudo apt-get install common-lisp-controller

安装 Slime

sudo apt-get install slime

修改 Emacs 配置文件,以支持 Common Lisp

emacs -nw ~/.emacs.d/user.el

(setq inferior-lisp-program "/usr/bin/sbcl")
    (add-to-list 'load-path "/usr/local/bin/slime/")
    (require 'slime)
    (slime-setup)
(slime-setup '(slime-fancy))

验证开发环境

emacs 或 emacs -nw

输入 Alt + X,输入 slime,回车

这里写图片描述

帅!

目录
相关文章
|
IDE Go 开发工具
【Go·编辑器IDE】GoLand集成开发环境安装及使用教程
【Go·编辑器IDE】GoLand集成开发环境安装及使用教程
【Go·编辑器IDE】GoLand集成开发环境安装及使用教程
|
5月前
|
IDE Linux Go
Go 语言开发工具LiteIDE
Go 语言开发工具LiteIDE
39 0
|
PHP Python
【PYTHON】——如何配置文本编辑器Geany
此文章帮助大家配置文本编辑器以更快更高效更直观地敲写代码,并以最原始的方式将效果显示出来
925 0
【PYTHON】——如何配置文本编辑器Geany
|
Java 开发工具 git
Clojure环境安装与QuickStart
Clojure环境安装与QuickStart 如果你连环境都不想安装,想直接体验一下Clojure的Lisp感觉,你只要保证你联网,就能做到. 打开http://www.
1098 0
|
IDE 开发工具 Android开发
Python IDE之Pydev: 基于Eclipse搭建python的编译环境(Eclipse+pydev)简介、安装、使用的详细攻略
Python IDE之Pydev: 基于Eclipse搭建python的编译环境(Eclipse+pydev)简介、安装、使用的详细攻略