b887f32e40cd

Merge.
[view raw] [browse files]
author Steve Losh <steve@stevelosh.com>
date Sat, 14 Oct 2017 17:58:52 -0400
parents 2462583456f0 (current diff) ce2f184901ce (diff)
children 1ecae6c99d54
branches/tags (none)
files

Changes

--- a/bin/code-to-pdf	Sat Oct 14 17:57:48 2017 -0400
+++ b/bin/code-to-pdf	Sat Oct 14 17:58:52 2017 -0400
@@ -3,7 +3,7 @@
 TITLE="$1"
 shift
 
-enscript -1 --media=A4 \
+enscript -1 --media=Letter \
     --toc \
     --header '%H - $N | | page $% of $= in file $v' \
     --font "Menlo-Regular@8.5" \
--- a/bin/sbcl-rlwrap	Sat Oct 14 17:57:48 2017 -0400
+++ b/bin/sbcl-rlwrap	Sat Oct 14 17:58:52 2017 -0400
@@ -1,4 +1,4 @@
 #!/usr/bin/env bash
 
 set -e
-rlwrap --histsize 1000 --history-filename "$HOME/.rlwrap-lisp-history" -- ros -L sbcl run -l ~/.sbclrc -- --dynamic-space-size 4000 "$@"
+rlwrap --histsize 1000 --history-filename "$HOME/.rlwrap-lisp-history" -- /usr/local/bin/sbcl --noinform --dynamic-space-size 4000 "$@"
--- a/sbclrc	Sat Oct 14 17:57:48 2017 -0400
+++ b/sbclrc	Sat Oct 14 17:58:52 2017 -0400
@@ -1,10 +1,10 @@
-;;; 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)))
-;;;
+;; 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)))
+;;
 
 ; (pushnew "~/lib/asdf/" asdf:*central-registry* :test #'equal)
 
--- a/vim/vimrc	Sat Oct 14 17:57:48 2017 -0400
+++ b/vim/vimrc	Sat Oct 14 17:58:52 2017 -0400
@@ -272,6 +272,8 @@
 silent! digr -. 8230 "U+2026=…    HORIZONTAL ELLIPSIS
 silent! digr !, 8816 "U+2270=≰    NEITHER LESS-THAN NOR EQUAL TO
 silent! digr !. 8817 "U+2271=≱    NEITHER GREATER-THAN NOR EQUAL TO
+silent! digr xs 8339 "U+2093=ₓ    SUBSCRIPT X
+
 
 " }}}
 " Convenience mappings ---------------------------------------------------- {{{