Skip to content

Instantly share code, notes, and snippets.

@number23
Created August 11, 2011 07:33
Show Gist options
  • Save number23/1139091 to your computer and use it in GitHub Desktop.
Save number23/1139091 to your computer and use it in GitHub Desktop.
sbclrc
;;; 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)))
;;; Check for --no-linedit command-line option.
(if (member "--no-linedit" sb-ext:*posix-argv* :test 'equal)
(setf sb-ext:*posix-argv*
(remove "--no-linedit" sb-ext:*posix-argv* :test 'equal))
(when (interactive-stream-p *terminal-io*)
(require :sb-aclrepl)
(require :linedit)
(funcall (intern "INSTALL-REPL" :linedit) :wrap-current t)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment