Update with tip on .custom loading for emacs settings

This commit is contained in:
David Botton 2022-04-09 21:35:45 -04:00
parent 5a28c1c698
commit bde06426a0

View file

@ -49,9 +49,12 @@
/c/Program\ Files/rho-emacs/rho /c/Program\ Files/rho-emacs/rho
Use C-x-f and create the file ~/.emacs.d/init.el and add the next two lines: Use C-x-f and create the file ~/.emacs.d/init.el and add the next three lines
(The first line is to include custom emacs themese and settings the next two
are to install slime for sbcl):
``` ```
(load "~/.emacs.d/.custom")
(load (expand-file-name "C:/Users/david/quicklisp/slime-helper.el")) (load (expand-file-name "C:/Users/david/quicklisp/slime-helper.el"))
(setq inferior-lisp-program "sbcl") (setq inferior-lisp-program "sbcl")
``` ```