diff options
author | EuAndreh <eu@euandre.org> | 2018-06-27 20:26:47 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2018-06-27 20:26:47 -0300 |
commit | 83eeee0933a6d12e90c66e7e68631f7fb6fc064c (patch) | |
tree | 27e7a7db6e47737af462c48af915c1621cc24fdb | |
parent | Add tern from npm (diff) | |
download | dotfiles-83eeee0933a6d12e90c66e7e68631f7fb6fc064c.tar.gz dotfiles-83eeee0933a6d12e90c66e7e68631f7fb6fc064c.tar.xz |
Load Quicklisp CL code in SBCL startup
-rw-r--r-- | sbclrc.lisp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sbclrc.lisp b/sbclrc.lisp index ab58ec5..3a931d0 100644 --- a/sbclrc.lisp +++ b/sbclrc.lisp @@ -1,2 +1,6 @@ -(defun tap (x) - x) +;;; The following lines added by ql:add-to-init-file: +#-quicklisp +(let ((quicklisp-init (merge-pathnames "quicklisp/setup.lisp" + (user-homedir-pathname)))) + (when (probe-file quicklisp-init) + (load quicklisp-init))) |