diff options
author | Vincent Ambo <tazjin@gmail.com> | 2017-11-24T15·45+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2017-11-24T15·45+0100 |
commit | 5b946a930cdcab0d37ad1f06b2c40d43073e67d0 (patch) | |
tree | 9c200acee00cbf98792b7d8fe40085b711f423fe /init/lisp-setup.el | |
parent | f93f03661beb8cbb88e24609d06c1f4c9fea8b6e (diff) |
fix(lisp): Actually require lisp-setup in init.el
Diffstat (limited to 'init/lisp-setup.el')
-rw-r--r-- | init/lisp-setup.el | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/init/lisp-setup.el b/init/lisp-setup.el new file mode 100644 index 000000000000..816d34b37ed3 --- /dev/null +++ b/init/lisp-setup.el @@ -0,0 +1,13 @@ +;; lisp-settings.el - settings for various Lisp dialects +;; -*- lexical-binding: t; -*- + +;; All the lisps: + +(add-to-list 'lisp-mode-hook #'paredit-mode) + +;; Common Lisp: +(load (expand-file-name "~/quicklisp/slime-helper.el")) +(setq inferior-lisp-program (concat (nix-store-path "sbcl") "/bin/sbcl")) +(setq slime-contribs '(slime-fancy)) + +(provide 'lisp-setup) |