aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2018-06-27 20:26:47 -0300
committerEuAndreh <eu@euandre.org>2018-06-27 20:26:47 -0300
commit83eeee0933a6d12e90c66e7e68631f7fb6fc064c (patch)
tree27e7a7db6e47737af462c48af915c1621cc24fdb
parentAdd tern from npm (diff)
downloaddotfiles-83eeee0933a6d12e90c66e7e68631f7fb6fc064c.tar.gz
dotfiles-83eeee0933a6d12e90c66e7e68631f7fb6fc064c.tar.xz
Load Quicklisp CL code in SBCL startup
-rw-r--r--sbclrc.lisp8
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)))