aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2026-09-03 00:17:03 -0700
committerGravatar Tom Willemse2026-09-12 01:00:38 -0700
commita429219f7c4e9aba8996346a962d1f9d67f19956 (patch)
tree6899136a18e86a06393228aed8abcf38a0edbb01
parent6ce874ca52336f2e1ddfda1c8075b4f81fe373a8 (diff)
downloadnew-dotfiles-a429219f7c4e9aba8996346a962d1f9d67f19956.tar.gz
new-dotfiles-a429219f7c4e9aba8996346a962d1f9d67f19956.zip
sbcl: Fix quicklisp path
Once upon a time I'd installed Quicklisp into ‘~/.local/share/quicklisp’ instead of the default ‘~/quicklisp’ and I forgot that I had to do this manually. I'm probably better off just using the default value.
-rw-r--r--sbcl/sbclrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sbcl/sbclrc b/sbcl/sbclrc
index 86d47f9..228ae53 100644
--- a/sbcl/sbclrc
+++ b/sbcl/sbclrc
@@ -2,7 +2,7 @@
;;; The following lines added by ql:add-to-init-file:
#-quicklisp
-(let ((quicklisp-init (merge-pathnames ".local/share/quicklisp/setup.lisp"
+(let ((quicklisp-init (merge-pathnames "quicklisp/setup.lisp"
(user-homedir-pathname))))
(when (probe-file quicklisp-init)
(load quicklisp-init)))