--- a/.hgsubstate Mon Feb 25 19:07:54 2019 -0500
+++ b/.hgsubstate Mon Feb 25 19:08:32 2019 -0500
@@ -2,12 +2,12 @@
1fc4a9fbead7e0acc4c828b346f3be2658ec3df9 mercurial/templates
b6a8b49e2173ba5a1b34d00e68e0ed8addac3ebd vim/bundle/abolish
a16a9b63eb85cc0960a7f25c54647ac1f99f3360 vim/bundle/ack
-1f53767227f0931e00a9e31e44c13633e563cd4c vim/bundle/badwolf
+d0bec1e6ea5d4a036cbbb8693a94583b91778ecc vim/bundle/badwolf
b542a7bc4d9bc5da8fb12e110fe7975131fb57a4 vim/bundle/clam
8295187ea1210138c0b171d8e3ec3569936f4c1a vim/bundle/commentary
c6d1fc5e58d689bfb104ff336aeb89d9ef1b48e2 vim/bundle/ctrlp
38487bbec8ba50834e257940b357de03991fa8f9 vim/bundle/delimitmate
-085060002106f591e399fc5a82fa3fafc7586bca vim/bundle/fugitive
+755554bb3c44944f70f4b2048acf0c69261782ac vim/bundle/fugitive
127d706f2def96876605e6bd5d366c973cb8e406 vim/bundle/gdl
6ea4e1983b18cf440c8f800a3e94b57338a3e99f vim/bundle/glsl
7fcea1a08423da3012aac87f5224738c85d212a1 vim/bundle/gnupg
@@ -25,7 +25,7 @@
d241974f40e8d206f9970e51fb0069951862ba35 vim/bundle/python-mode
eb8baa5428bde10ecc1cb14eed1d6e16f5f24695 vim/bundle/rainbow-parentheses
43d2678fa59d068c815d8298331c195e850ff5a7 vim/bundle/repeat
-848841083d5d4550b5ebbd3bd67dfb3e5146b64a vim/bundle/rhubarb
+e57ed3b6be2c4a49656f1a816919f0af22fae324 vim/bundle/rhubarb
10d6c6b52fcdd12f3ba457126f66fee4ccceec04 vim/bundle/securemodelines
b4398689f7483b01684044ab6b55bf369744c9b3 vim/bundle/sexp
e02c3e218c51c1e2ea1821a3fe412d4e09ca1502 vim/bundle/shaderhighlight
@@ -34,7 +34,7 @@
aa1f120ad3a29c27cc41d581cda3751c59343cce vim/bundle/surround
19c3d966440b6cfe8d74251881a48e961ddb8648 vim/bundle/swig
f6f2d6618a321f5b0065586a7bc934325fec81ab vim/bundle/targets
-40ffc87ba3eabf299c50ace52be39c1573d0976a vim/bundle/vim-go
+c860f7c3ae0e0287f143a5b3e58873fc0a9fbda9 vim/bundle/vim-go
5d5c71044880443035e07009497962feacb56b20 vim/bundle/vimtex
16b96feec48c207591cea80882818e5d24a03c43 vim/bundle/vlime
6876fe38b33732cb124d415ffc4156f16da5e118 vim/bundle/windowswap
--- a/bin/cacl Mon Feb 25 19:07:54 2019 -0500
+++ b/bin/cacl Mon Feb 25 19:08:32 2019 -0500
@@ -3,6 +3,6 @@
set -e
LISPS=("sbcl" "ccl" "abcl" "ecl")
-LISPS=("sbcl" "ccl" "ecl")
+LISPS=("sbcl" "ccl")
rlwrap ~/src/cacl/cacl-$(shuf -n1 -e "${LISPS[@]}") "$@"
--- a/fish/config.fish Mon Feb 25 19:07:54 2019 -0500
+++ b/fish/config.fish Mon Feb 25 19:08:32 2019 -0500
@@ -98,6 +98,15 @@
set -g -x GPG_TTY (tty)
+# Less Colors for Man Pages
+set -g -x LESS_TERMCAP_mb (printf '\e[01;31m') # begin blinking
+set -g -x LESS_TERMCAP_md (printf '\e[01;38;5;74m') # begin bold
+set -g -x LESS_TERMCAP_me (printf '\e[0m') # end mode
+set -g -x LESS_TERMCAP_se (printf '\e[0m') # end standout-mode
+set -g -x LESS_TERMCAP_so (printf '\e[38;5;246m') # begin standout-mode - info box
+set -g -x LESS_TERMCAP_ue (printf '\e[0m') # end underline
+set -g -x LESS_TERMCAP_us (printf '\e[04;38;5;146m') # begin underline
+
# }}}
# Python {{{
--- a/stumpwmrc Mon Feb 25 19:07:54 2019 -0500
+++ b/stumpwmrc Mon Feb 25 19:08:32 2019 -0500
@@ -193,8 +193,8 @@
(,extern ("--auto"))
(,extern ("--primary"))
;; (,extern ("--mode" "2560x1440"))
+ (,extern ("--left-of" ,laptop))
;; (,extern ("--right-of" ,laptop))
- (,extern ("--left-of" ,laptop))
)
do (pr (uiop:run-program `("xrandr" "--output" ,output ,@commands)))))
@@ -227,6 +227,12 @@
(t (message "Not sleeping this machine for safety.."))))
+;;;; Clipboard/Data Generation ------------------------------------------------
+(defcommand generate-random-uuid () ()
+ (run-shell-command "uuidgen | tr -d '\\n' | ~/src/dotfiles/bin/pbcopy")
+ (message "Copied random UUID to clipboard."))
+
+
;;;; Applications -------------------------------------------------------------
(defcommand spotify () ()
(run-or-raise "spotify" '(:class "Spotify")))
@@ -297,6 +303,9 @@
("H-r" "loadrc")
("H-V" "vlime"))
+(define-top-keys ;; clipboard
+ ("H-u" "generate-random-uuid"))
+
(define-top-keys ;; movement
("H-h" "move-focus* left")
("H-j" "move-focus down")
@@ -316,7 +325,9 @@
("H-n" "next-in-frame")
("H-p" "prev-in-frame")
("H-N" "pull-hidden-next")
- ("H-P" "prev-in-frame"))
+ ("H-P" "prev-in-frame")
+
+ ("H-," "pull-from-windowlist"))
(define-top-keys ;; splitting
("H-s" "sane-vsplit")
--- a/vim/custom-dictionary.utf-8.add Mon Feb 25 19:07:54 2019 -0500
+++ b/vim/custom-dictionary.utf-8.add Mon Feb 25 19:08:32 2019 -0500
@@ -275,4 +275,7 @@
CACL
shaders
vsync
+nginx
+unmarshaling
+deserialize
lparallel