dotfiles/emacs/.emacs.d/config/init-lisp.el

10 lines
193 B
EmacsLisp
Raw Normal View History

2021-03-08 19:16:13 +00:00
;; -*- lexical-binding: t; -*-
(use-package slime
:commands (slime)
:hook ((lisp-mode . slime-mode))
:init
(setq inferior-lisp-program (executable-find "sbcl")))
(provide 'init-lisp)