20c80d3ca2b3

More
[view raw] [browse files]
author Steve Losh <steve@stevelosh.com>
date Mon, 09 Sep 2019 10:07:19 -0400
parents cbfc3c8ecf62
children eeb1312e30cc
branches/tags (none)
files bin/go-dep-graph fish/config.fish stumpwmrc vim/vimrc

Changes

--- 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
--- 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
--- 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))
--- 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 <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
 
 " }}}