My various dotfiles

.sbclrc 616B

12345678910111213141516
  1. ;;; -*- mode: common-lisp; -*-
  2. #-quicklisp
  3. (let ((quicklisp-init (merge-pathnames "quicklisp/setup.lisp"
  4. (user-homedir-pathname))))
  5. (when (probe-file quicklisp-init)
  6. (load quicklisp-init)))
  7. ;;; Check for --no-linedit command-line option.
  8. (if (member "--no-linedit" sb-ext:*posix-argv* :test 'equal)
  9. (setf sb-ext:*posix-argv*
  10. (remove "--no-linedit" sb-ext:*posix-argv* :test 'equal))
  11. (when (interactive-stream-p *terminal-io*)
  12. (require :sb-aclrepl)
  13. (require :linedit)
  14. (funcall (intern "INSTALL-REPL" :linedit) :wrap-current t :eof-quits t)))