eeb1312e30cc
Merge.
author | Steve Losh <steve@stevelosh.com> |
---|---|
date | Mon, 09 Sep 2019 10:09:33 -0400 |
parents | 20c80d3ca2b3 (diff) b31a16ffe5a1 (current diff) |
children | e5fe3d20c01c |
branches/tags | (none) |
files | stumpwmrc |
Changes
--- a/bin/go-dep-graph Mon Sep 09 10:08:45 2019 -0400 +++ b/bin/go-dep-graph Mon Sep 09 10:09:33 2019 -0400 @@ -7,4 +7,4 @@ echo '}' } -render | dot -o "dependencies.png" -Tpng +render | dot -o "dependencies.svg" -Tsvg
--- a/fish/config.fish Mon Sep 09 10:08:45 2019 -0400 +++ b/fish/config.fish Mon Sep 09 10:09:33 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
--- a/stumpwmrc Mon Sep 09 10:08:45 2019 -0400 +++ b/stumpwmrc Mon Sep 09 10:09:33 2019 -0400 @@ -362,6 +362,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))
--- a/vim/vimrc Mon Sep 09 10:08:45 2019 -0400 +++ b/vim/vimrc Mon Sep 09 10:09:33 2019 -0400 @@ -1767,8 +1767,7 @@ au! " au BufNewFile,BufRead ~/.plan/README.markdown nnoremap <buffer> <localleader>l :call PlanLinkPaste()<cr> - au BufNewFile,BufRead ~/.plan/README.markdown nnoremap <buffer> <localleader>d o##<esc>:r!date +\%Y-\%m-\%d<cr>kJ - au BufNewFile,BufRead ~/.personal-plan/README.markdown nnoremap <buffer> <localleader>d o##<esc>:r!date +\%Y-\%m-\%d<cr>kJ + au BufNewFile,BufRead *.markdown nnoremap <buffer> <localleader>d o##<esc>:r!date +\%Y-\%m-\%d<cr>kJ augroup END " }}}