changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > infra / etc/skel/.sbclrc

changeset 46: 114fd45076cf
parent: 0a88cdd4bbd5
child: 0c25e3c90fa4
author: ellis <ellis@rwest.io>
date: Tue, 02 Jan 2024 22:17:10 -0500
permissions: -rw-r--r--
description: fix
1 ;;; .sbclrc --- sbcl init file -*- mode: common-lisp; -*-
2 (in-package :cl-user)
3 (setq *debug-beginner-help-p* nil
4  *print-case* :downcase
5  *print-level* 50
6  *print-length* 200)
7 
8 #-quicklisp
9 (let ((quicklisp-init (merge-pathnames "quicklisp/setup.lisp" (user-homedir-pathname))))
10  (when (probe-file quicklisp-init)
11  (load quicklisp-init)))
12 
13 (require :sb-aclrepl)