summaryrefslogtreecommitdiff
path: root/.sbclrc
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-02-20 17:58:36 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-02-20 18:01:58 -0700
commit4bb21140a86e47a768b2ad14e344621b49be03b5 (patch)
tree3dbda7ecf119583e654a51f174a19e3afb49056f /.sbclrc
parent66d1c007460720be3ef96ed7072376e78743dba2 (diff)
downloaddotfiles-4bb21140a86e47a768b2ad14e344621b49be03b5.tar.gz
add sbclrc
Diffstat (limited to '.sbclrc')
-rw-r--r--.sbclrc10
1 files changed, 10 insertions, 0 deletions
diff --git a/.sbclrc b/.sbclrc
new file mode 100644
index 00000000..0f12ba40
--- /dev/null
+++ b/.sbclrc
@@ -0,0 +1,10 @@
+(require "asdf")
+
+;; get some additional useful functions in CL-USER
+(when (asdf:find-system "alexandria" nil)
+ (asdf:load-system "alexandria")
+ (use-package :alexandria))
+
+;; get a DROP-THEM restart when we delete symbols from the exports list in a
+;; DEFPACKAGE and then reevaluate that DEFPACKAGE
+(setq *on-package-variance* '(:error t))