Skip to content

Commit 6b3b0e3

Browse files
committed
sbcl: add init file
1 parent b9e44e2 commit 6b3b0e3

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

sbcl/.sbclrc

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
;; Stop Lisp from SCREAMING AT YOU.
2+
(setf *print-case* :downcase)
3+
;; Replace very deeply nested structures by '#' when printing.
4+
(setf *print-level* 50)
5+
;; Replace elements of very long sequences by '...' when printing.
6+
(setf *print-length* 200)
7+
8+
#+sbcl
9+
(progn
10+
(sb-ext:restrict-compiler-policy 'safety 3)
11+
(sb-ext:restrict-compiler-policy 'debug 3))
12+
;;#+sbcl
13+
;;(require 'sb-aclrepl)
14+
15+
;;; The following lines added by ql:add-to-init-file:
16+
#-quicklisp
17+
(let ((quicklisp-init (merge-pathnames "Private/quicklisp/setup.lisp"
18+
(user-homedir-pathname))))
19+
(when (probe-file quicklisp-init)
20+
(load quicklisp-init)))

0 commit comments

Comments
 (0)