Lisp: Init sbclrc and ccl-init

master
Pierre Neidhardt 2018-11-18 11:52:06 +01:00
parent 82cc40002a
commit b53edd4192
2 changed files with 19 additions and 0 deletions

9
.ccl-init.lisp Normal file
View File

@ -0,0 +1,9 @@
(setf *print-case* :downcase)
;;; The following lines added by ql:add-to-init-file:
#-quicklisp
(let ((quicklisp-init (merge-pathnames ".quicklisp/setup.lisp" (user-homedir-pathname))))
(when (probe-file quicklisp-init)
(load quicklisp-init)))
(require :asdf)

10
.sbclrc Normal file
View File

@ -0,0 +1,10 @@
;; -*- mode: common-lisp; -*-
(setf *print-case* :downcase)
;;; The following lines added by ql:add-to-init-file:
#-quicklisp
(let ((quicklisp-init (merge-pathnames ".quicklisp/setup.lisp"
(user-homedir-pathname))))
(when (probe-file quicklisp-init)
(load quicklisp-init)))