change init.el to config file

This commit is contained in:
call-cc 2020-05-24 14:17:37 -04:00
parent 25cb7b036b
commit 531aefa9e4
1 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ Install [SLIME](https://github.com/slime/slime) or [SLY](https://github.com/joao
Configuring SLIME:
Add this to your .emacs.d/init.el or .emacs
Add this to your config file
```
(load (expand-file-name "~/quicklisp/slime-helper.el")) ;; If you're using quicklisp
(setq inferior-lisp-program "your-lisp-implementation") ;; Probably Clozure CL or SBCL
@ -25,7 +25,7 @@ Add this to your .emacs.d/init.el or .emacs
Configuring SLY:
Literally just add your inferior lisp program into your .init.el:
Literally just add your inferior lisp program into your config file:
`(setq inferior-lisp-program "your-lisp-implementation")`