--- a/.hgrc Mon Jul 25 09:27:39 2011 -0400
+++ b/.hgrc Mon Aug 01 15:06:37 2011 -0400
@@ -47,6 +47,7 @@
nyh = ssh://sjl@gotham.nyhacker.org/
dl = ssh://hg@hg.dwaiter.com:38038/
mirr = ssh://hg@dwaiter.com:38038/mirror/
+gc = https://code.google.com/p/
[diff]
git = True
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/dotjs/nytimes.com.js Mon Aug 01 15:06:37 2011 -0400
@@ -0,0 +1,7 @@
+$('.socialMediaModule').remove();
+
+$('#wsodMarkets').remove();
+$('#classifiedsWidget').remove();
+$('.cColumn #cColumnTopSpanRegion').remove();
+$('#recommendedFooter').remove();
+$('#mostPopWidget').remove();
--- a/mutt/muttrc Mon Jul 25 09:27:39 2011 -0400
+++ b/mutt/muttrc Mon Aug 01 15:06:37 2011 -0400
@@ -94,30 +94,26 @@
# bindings
bind index <tab> sync-mailbox
-bind index l previous-entry
-bind index k next-entry
+bind index k previous-entry
+bind index j next-entry
bind pager i exit
bind pager / search
-bind pager l previous-line
-bind pager k next-line
+bind pager k previous-line
+bind pager j next-line
bind pager gg top
bind pager G bottom
bind index gg first-entry
bind index G last-entry
-bind pager L previous-undeleted
-bind pager K next-undeleted
-bind index L previous-unread
-bind index K next-unread
bind index,pager R group-reply
bind index \Cp recall-message
bind index <space> collapse-thread
# macros
-macro index \Cr "<tag-prefix><clear-flag>N" "mark tagged messages as read"
-macro index \CR "T~U<enter><tag-prefix><clear-flag>N<untag-pattern>.<enter>" "mark all messages as read"
-macro index B "<limit>~b " "search message bodies"
-macro index I "<change-folder>!<enter>" "go to Inbox"
-macro pager \Cu "|urlview<enter>" "call urlview to extract URLs out of a message"
+macro index \Cr "<tag-prefix><clear-flag>N" "mark tagged messages as read"
+macro index \CR "T~U<enter><tag-prefix><clear-flag>N<untag-pattern>.<enter>" "mark all messages as read"
+macro index B "<limit>~b " "search message bodies"
+macro index I "<change-folder>!<enter>" "go to Inbox"
+macro pager \Cu "|urlview<enter>" "call urlview to extract URLs out of a message"
macro index,pager o "|mvim -c 'setlocal ft=mail' -c 'setlocal buftype=nofile' -<enter>" "open in vim"
macro index <esc>f ":set date_format = \"%m/%d\"<enter>" "short date format"
--- a/vim/.vimrc Mon Jul 25 09:27:39 2011 -0400
+++ b/vim/.vimrc Mon Aug 01 15:06:37 2011 -0400
@@ -473,8 +473,7 @@
inoremap <C-_> <Space><BS><Esc>:call InsertCloseTag()<cr>a
" Faster Esc
-inoremap <c-t> <ESC>
-call arpeggio#map('i', '', 0, 'ne', '<Esc>')
+inoremap jk <esc>
" Cmdheight switching
nnoremap <leader>1 :set cmdheight=1<cr>
@@ -529,7 +528,7 @@
noremap <F2> :NERDTreeToggle<cr>
inoremap <F2> <esc>:NERDTreeToggle<cr>
-let NERDTreeIgnore=['.vim$', '\~$', '.*\.pyc$', 'pip-log\.txt$', 'whoosh_index', 'xapian_index', '.*.pid', 'monitor.py', '.*-fixtures-.*.json', '.*\.o$']
+let NERDTreeIgnore=['.vim$', '\~$', '.*\.pyc$', 'pip-log\.txt$', 'whoosh_index', 'xapian_index', '.*.pid', 'monitor.py', '.*-fixtures-.*.json', '.*\.o$', 'db.db']
au Filetype nerdtree setlocal nolist
" }}}