--- a/bin/bootstrap.sh Tue Sep 20 12:53:14 2022 -0400
+++ b/bin/bootstrap.sh Tue Sep 20 12:56:45 2022 -0400
@@ -54,7 +54,6 @@
ensure_link "src/dotfiles/sqliterc" ".sqliterc"
ensure_link "src/dotfiles/stumpwmrc" ".stumpwmrc"
ensure_link "src/dotfiles/stumpwm/local-share-stumpwm" ".local/share/stumpwm"
-ensure_link "src/dotfiles/tmux/tmux.conf" ".tmux.conf"
ensure_link "src/dotfiles/vim" ".vim"
ensure_link "src/dotfiles/vim/vimrc" ".vimrc"
ensure_link "src/dotfiles/w3m-keymap" ".w3m/keymap"
--- a/bin/external-ip Tue Sep 20 12:53:14 2022 -0400
+++ b/bin/external-ip Tue Sep 20 12:56:45 2022 -0400
@@ -4,5 +4,5 @@
#dig @resolver1.opendns.com ANY myip.opendns.com +short
-curl whatismyip.stevelosh.com
+curl https://whatismyip.stevelosh.com
--- a/bin/pastebin Tue Sep 20 12:53:14 2022 -0400
+++ b/bin/pastebin Tue Sep 20 12:56:45 2022 -0400
@@ -2,7 +2,7 @@
set -euo pipefail
-PASTE_SHA=$(ssh paste.stevelosh.com -- 'cat > tmppaste && sha1sum tmppaste | cut -d" " -f1 && mv tmppaste /var/www/paste/`sha1sum tmppaste | cut -d" " -f1`')
+PASTE_SHA=$(ssh paste.stevelosh.com -- 'cat > tmppaste && sha1sum tmppaste | cut -d" " -f1 && mv tmppaste /var/www/paste.stevelosh.com/`sha1sum tmppaste | cut -d" " -f1`')
URL="https://paste.stevelosh.com/$PASTE_SHA"
echo -n "$URL" | pbcopy
--- a/fish/config.fish Tue Sep 20 12:53:14 2022 -0400
+++ b/fish/config.fish Tue Sep 20 12:56:45 2022 -0400
@@ -196,7 +196,7 @@
set_color normal
printf ' on '
set_color magenta
- printf '%s' (git current-branch ^/dev/null)
+ printf '%s' (git current-branch 2>/dev/null)
set_color green
git_prompt_status
set_color normal
--- a/fish/functions/serve-this.fish Tue Sep 20 12:53:14 2022 -0400
+++ b/fish/functions/serve-this.fish Tue Sep 20 12:56:45 2022 -0400
@@ -1,3 +1,3 @@
function serve-this -d "Launch a webserver on 8000 serving the cwd"
- python -m SimpleHTTPServer
+ python3 -m http.server
end
--- a/lispwords Tue Sep 20 12:53:14 2022 -0400
+++ b/lispwords Tue Sep 20 12:56:45 2022 -0400
@@ -146,3 +146,5 @@
; boots
(1 event-case)
+; parsnip
+(1 let!)
--- a/remote/bootstrap.sh Tue Sep 20 12:53:14 2022 -0400
+++ b/remote/bootstrap.sh Tue Sep 20 12:56:45 2022 -0400
@@ -9,8 +9,7 @@
# Already linked.
true
elif test -e "$dst"; then
- echo File "$dst" already exists and is not a symbolic link.
- # exit 1
+ echo File "$dst" already exists, skipping.
elif test ! -e "$src"; then
echo File "$src" does not exist.
exit 1
--- a/vim/custom-dictionary.utf-8.add Tue Sep 20 12:53:14 2022 -0400
+++ b/vim/custom-dictionary.utf-8.add Tue Sep 20 12:56:45 2022 -0400
@@ -321,3 +321,9 @@
Virtualbox
libvirt
qemu
+superclasses
+metaclasses
+Metaobject
+memoize
+metaobjects
+memoized
--- a/vim/vimrc Tue Sep 20 12:53:14 2022 -0400
+++ b/vim/vimrc Tue Sep 20 12:56:45 2022 -0400
@@ -1191,6 +1191,10 @@
au FileType lisp noremap <buffer> <right> :<c-u>call SexpForward()<cr>
au FileType lisp noremap <buffer> <up> :<c-u>call SexpUp()<cr>
au FileType lisp noremap <buffer> <down> :<c-u>call SexpDown()<cr>
+
+ " Writing
+
+ au FileType lisp noremap <buffer> <localleader>= I; => <esc>
augroup END " }}}
" }}}
--- a/weechat/alias.conf Tue Sep 20 12:53:14 2022 -0400
+++ b/weechat/alias.conf Tue Sep 20 12:56:45 2022 -0400
@@ -6,7 +6,7 @@
#
# Use commands like /set or /fset to change settings in WeeChat.
#
-# For more info, see: https://weechat.org/doc/quickstart
+# For more info, see: https://weechat.org/doc/quickstart/
#
[cmd]
--- a/weechat/autosort.conf Tue Sep 20 12:53:14 2022 -0400
+++ b/weechat/autosort.conf Tue Sep 20 12:56:45 2022 -0400
@@ -6,7 +6,7 @@
#
# Use commands like /set or /fset to change settings in WeeChat.
#
-# For more info, see: https://weechat.org/doc/quickstart
+# For more info, see: https://weechat.org/doc/quickstart/
#
[sorting]
--- a/weechat/buflist.conf Tue Sep 20 12:53:14 2022 -0400
+++ b/weechat/buflist.conf Tue Sep 20 12:56:45 2022 -0400
@@ -6,7 +6,7 @@
#
# Use commands like /set or /fset to change settings in WeeChat.
#
-# For more info, see: https://weechat.org/doc/quickstart
+# For more info, see: https://weechat.org/doc/quickstart/
#
[look]
--- a/weechat/charset.conf Tue Sep 20 12:53:14 2022 -0400
+++ b/weechat/charset.conf Tue Sep 20 12:56:45 2022 -0400
@@ -6,7 +6,7 @@
#
# Use commands like /set or /fset to change settings in WeeChat.
#
-# For more info, see: https://weechat.org/doc/quickstart
+# For more info, see: https://weechat.org/doc/quickstart/
#
[default]
--- a/weechat/exec.conf Tue Sep 20 12:53:14 2022 -0400
+++ b/weechat/exec.conf Tue Sep 20 12:56:45 2022 -0400
@@ -6,7 +6,7 @@
#
# Use commands like /set or /fset to change settings in WeeChat.
#
-# For more info, see: https://weechat.org/doc/quickstart
+# For more info, see: https://weechat.org/doc/quickstart/
#
[command]
--- a/weechat/fifo.conf Tue Sep 20 12:53:14 2022 -0400
+++ b/weechat/fifo.conf Tue Sep 20 12:56:45 2022 -0400
@@ -6,7 +6,7 @@
#
# Use commands like /set or /fset to change settings in WeeChat.
#
-# For more info, see: https://weechat.org/doc/quickstart
+# For more info, see: https://weechat.org/doc/quickstart/
#
[file]
--- a/weechat/fset.conf Tue Sep 20 12:53:14 2022 -0400
+++ b/weechat/fset.conf Tue Sep 20 12:56:45 2022 -0400
@@ -6,7 +6,7 @@
#
# Use commands like /set or /fset to change settings in WeeChat.
#
-# For more info, see: https://weechat.org/doc/quickstart
+# For more info, see: https://weechat.org/doc/quickstart/
#
[look]
--- a/weechat/logger.conf Tue Sep 20 12:53:14 2022 -0400
+++ b/weechat/logger.conf Tue Sep 20 12:56:45 2022 -0400
@@ -6,7 +6,7 @@
#
# Use commands like /set or /fset to change settings in WeeChat.
#
-# For more info, see: https://weechat.org/doc/quickstart
+# For more info, see: https://weechat.org/doc/quickstart/
#
[look]
--- a/weechat/python.conf Tue Sep 20 12:53:14 2022 -0400
+++ b/weechat/python.conf Tue Sep 20 12:56:45 2022 -0400
@@ -6,7 +6,7 @@
#
# Use commands like /set or /fset to change settings in WeeChat.
#
-# For more info, see: https://weechat.org/doc/quickstart
+# For more info, see: https://weechat.org/doc/quickstart/
#
[look]
--- a/weechat/relay.conf Tue Sep 20 12:53:14 2022 -0400
+++ b/weechat/relay.conf Tue Sep 20 12:56:45 2022 -0400
@@ -6,7 +6,7 @@
#
# Use commands like /set or /fset to change settings in WeeChat.
#
-# For more info, see: https://weechat.org/doc/quickstart
+# For more info, see: https://weechat.org/doc/quickstart/
#
[look]
@@ -30,7 +30,7 @@
auth_timeout = 60
bind_address = ""
clients_purge_delay = 0
-compression_level = 6
+compression = 20
ipv6 = on
max_clients = 5
nonce_size = 16
--- a/weechat/script.conf Tue Sep 20 12:53:14 2022 -0400
+++ b/weechat/script.conf Tue Sep 20 12:56:45 2022 -0400
@@ -6,7 +6,7 @@
#
# Use commands like /set or /fset to change settings in WeeChat.
#
-# For more info, see: https://weechat.org/doc/quickstart
+# For more info, see: https://weechat.org/doc/quickstart/
#
[look]
--- a/weechat/trigger.conf Tue Sep 20 12:53:14 2022 -0400
+++ b/weechat/trigger.conf Tue Sep 20 12:56:45 2022 -0400
@@ -6,7 +6,7 @@
#
# Use commands like /set or /fset to change settings in WeeChat.
#
-# For more info, see: https://weechat.org/doc/quickstart
+# For more info, see: https://weechat.org/doc/quickstart/
#
[look]
--- a/weechat/typing.conf Tue Sep 20 12:53:14 2022 -0400
+++ b/weechat/typing.conf Tue Sep 20 12:56:45 2022 -0400
@@ -6,7 +6,7 @@
#
# Use commands like /set or /fset to change settings in WeeChat.
#
-# For more info, see: https://weechat.org/doc/quickstart
+# For more info, see: https://weechat.org/doc/quickstart/
#
[look]
--- a/weechat/urlgrab.conf Tue Sep 20 12:53:14 2022 -0400
+++ b/weechat/urlgrab.conf Tue Sep 20 12:56:45 2022 -0400
@@ -6,7 +6,7 @@
#
# Use commands like /set or /fset to change settings in WeeChat.
#
-# For more info, see: https://weechat.org/doc/quickstart
+# For more info, see: https://weechat.org/doc/quickstart/
#
[color]
--- a/weechat/xfer.conf Tue Sep 20 12:53:14 2022 -0400
+++ b/weechat/xfer.conf Tue Sep 20 12:56:45 2022 -0400
@@ -6,7 +6,7 @@
#
# Use commands like /set or /fset to change settings in WeeChat.
#
-# For more info, see: https://weechat.org/doc/quickstart
+# For more info, see: https://weechat.org/doc/quickstart/
#
[look]