# HG changeset patch # User Steve Losh # Date 1568038039 14400 # Node ID 20c80d3ca2b3bec98ece883eb4d3fb77acf623f3 # Parent cbfc3c8ecf62449f989b8c53bb1774bebb8e5963 More diff -r cbfc3c8ecf62 -r 20c80d3ca2b3 bin/go-dep-graph --- a/bin/go-dep-graph Wed Aug 28 09:51:22 2019 -0400 +++ b/bin/go-dep-graph Mon Sep 09 10:07:19 2019 -0400 @@ -7,4 +7,4 @@ echo '}' } -render | dot -o "dependencies.png" -Tpng +render | dot -o "dependencies.svg" -Tsvg diff -r cbfc3c8ecf62 -r 20c80d3ca2b3 fish/config.fish --- a/fish/config.fish Wed Aug 28 09:51:22 2019 -0400 +++ b/fish/config.fish Mon Sep 09 10:07:19 2019 -0400 @@ -14,6 +14,8 @@ function es; nvim ~/.stumpwmrc; end function ev; nvim ~/.vimrc; end +function js; cd ~/scratch; end + function ..; cd ..; end function ...; cd ../..; end function ....; cd ../../..; end diff -r cbfc3c8ecf62 -r 20c80d3ca2b3 stumpwmrc --- a/stumpwmrc Wed Aug 28 09:51:22 2019 -0400 +++ b/stumpwmrc Mon Sep 09 10:07:19 2019 -0400 @@ -360,6 +360,14 @@ ;;;; Terminal Fonts ----------------------------------------------------------- +(defcommand reload-terminal-font-size () + () + (setf *terminal-font-size* + (if (probe-file "/home/sjl/.terminal-font") + (with-open-file (f "/home/sjl/.terminal-font") + (read f)) + 11))) + (defparameter *terminal-font-size* (if (probe-file "~/.terminal-font") (with-open-file (f "~/.terminal-font") (read f)) diff -r cbfc3c8ecf62 -r 20c80d3ca2b3 vim/vimrc --- a/vim/vimrc Wed Aug 28 09:51:22 2019 -0400 +++ b/vim/vimrc Mon Sep 09 10:07:19 2019 -0400 @@ -1767,8 +1767,7 @@ au! " au BufNewFile,BufRead ~/.plan/README.markdown nnoremap l :call PlanLinkPaste() - au BufNewFile,BufRead ~/.plan/README.markdown nnoremap d o##:r!date +\%Y-\%m-\%dkJ - au BufNewFile,BufRead ~/.personal-plan/README.markdown nnoremap d o##:r!date +\%Y-\%m-\%dkJ + au BufNewFile,BufRead *.markdown nnoremap d o##:r!date +\%Y-\%m-\%dkJ augroup END " }}}