fix(lisp): Actually require lisp-setup in init.el

This commit is contained in:
Vincent Ambo 2017-11-24 16:45:12 +01:00
parent f93f03661b
commit 5b946a930c
2 changed files with 3 additions and 0 deletions

View file

@ -106,6 +106,7 @@
eshell-setup eshell-setup
haskell-setup haskell-setup
rust-setup rust-setup
lisp-setup
))) )))
(add-hook 'after-init-hook 'load-other-settings) (add-hook 'after-init-hook 'load-other-settings)

View file

@ -9,3 +9,5 @@
(load (expand-file-name "~/quicklisp/slime-helper.el")) (load (expand-file-name "~/quicklisp/slime-helper.el"))
(setq inferior-lisp-program (concat (nix-store-path "sbcl") "/bin/sbcl")) (setq inferior-lisp-program (concat (nix-store-path "sbcl") "/bin/sbcl"))
(setq slime-contribs '(slime-fancy)) (setq slime-contribs '(slime-fancy))
(provide 'lisp-setup)