diff options
author | Tristan Williams <tgwil@tgwil.net> | 2024-10-13 14:09:26 -0400 |
---|---|---|
committer | Tristan Williams <tgwil@tgwil.net> | 2024-10-13 14:09:26 -0400 |
commit | 23c407dc322b6857e17b12ac185a531c77eb2c20 (patch) | |
tree | a55d1bf6640a56c8387e1dc0563ebf4b81c3d6f3 /home | |
parent | Create ~/bin during dotfiless installation (diff) | |
download | dotfiles.core-23c407dc322b6857e17b12ac185a531c77eb2c20.tar.gz dotfiles.core-23c407dc322b6857e17b12ac185a531c77eb2c20.tar.bz2 dotfiles.core-23c407dc322b6857e17b12ac185a531c77eb2c20.zip |
Add SBCL configuration
Diffstat (limited to 'home')
-rw-r--r-- | home/.sbclrc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/home/.sbclrc b/home/.sbclrc new file mode 100644 index 0000000..6dd45fd --- /dev/null +++ b/home/.sbclrc | |||
@@ -0,0 +1,12 @@ | |||
1 | ;;;; SBCL Configuration | ||
2 | ;;; FILE : dotfiles.core/home/.sbclrc | ||
3 | ;;; TARGET: ~/.sbclrc | ||
4 | ;;; AUTHOR: tgwil | ||
5 | |||
6 | ;; Use Quicklisp | ||
7 | #-quicklisp | ||
8 | (let ((quicklisp-init (merge-pathnames "lisp/quicklisp/setup.lisp" | ||
9 | (user-homedir-pathname)))) | ||
10 | (when (probe-file quicklisp-init) | ||
11 | (load quicklisp-init))) | ||
12 | |||