--- a/.gitconfig Wed Jan 25 12:11:15 2012 -0500
+++ b/.gitconfig Thu Jan 26 12:03:14 2012 -0500
@@ -20,6 +20,9 @@
ci = commit
cm = commit -m
+ d = diff
+ di = diff --cached
+
co = checkout
id = rev-parse
--- a/.pentadactylrc Wed Jan 25 12:11:15 2012 -0500
+++ b/.pentadactylrc Thu Jan 26 12:03:14 2012 -0500
@@ -8,6 +8,8 @@
highlight CmdOutput font: normal 14px 'Menlo' !important;
highlight CompItem font: normal 14px 'Menlo' !important;
+set passkeys+=duckduckgo.com:jk<cr>
+set defsearch=duckduckgo-ssl
set runtimepath=/Users/sjl/.pentadactyl
set editor='/usr/local/bin/mvim -f +<line> <file>'
set followhints=1
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/bin/longcat Thu Jan 26 12:03:14 2012 -0500
@@ -0,0 +1,31 @@
+#!/usr/bin/env python
+
+import sys
+
+if len(sys.argv) > 1:
+ n = int(sys.argv[1])
+else:
+ n = 20
+
+print r'''
+ /\___/\
+ / \
+ | # # |
+ \ @ |
+ \ _|_ /
+ / \______
+ / _______ ___ \
+ |_____ \ \__/
+ | \__/
+ | |
+''',
+print ' | |\n' * n,
+print r''' | |
+ / \
+ / ____ \
+ | / \ |
+ | | | |
+ / | | \
+ \__/ \__/
+'''
+
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/vim/snippets/markdown.snippets Thu Jan 26 12:03:14 2012 -0500
@@ -0,0 +1,10 @@
+snippet notice
+ <span class="label notice">${1:Notice}</span>
+snippet warning
+ <span class="label warning">${1:Warning}</span>
+snippet important
+ <span class="label important">${1:Important}</span>
+snippet success
+ <span class="label success">${1:Success}</span>
+snippet label
+ <span class="label">${1:Note}</span>
--- a/weechat/buffers.conf Wed Jan 25 12:11:15 2012 -0500
+++ b/weechat/buffers.conf Thu Jan 26 12:03:14 2012 -0500
@@ -8,15 +8,15 @@
default_bg = default
default_fg = default
hotlist_highlight_bg = default
-hotlist_highlight_fg = lightmagenta
+hotlist_highlight_fg = *magenta
hotlist_low_bg = default
hotlist_low_fg = white
hotlist_message_bg = default
hotlist_message_fg = green
hotlist_private_bg = default
-hotlist_private_fg = lightgreen
+hotlist_private_fg = *magenta
none_channel_bg = default
-none_channel_fg = default
+none_channel_fg = 240
number = green
number_char = green
whitelist_default = default
--- a/zsh/misc.zsh Wed Jan 25 12:11:15 2012 -0500
+++ b/zsh/misc.zsh Thu Jan 26 12:03:14 2012 -0500
@@ -111,3 +111,5 @@
echo growlnotify -sm "'$*'" | at now + $MINS $UNITS
}
+
+alias lc='longcat | lolcat'