# HG changeset patch # User Steve Losh # Date 1334926831 -3600 # Node ID 2c088480ba9e9e9d478ec56a39026af836e421a1 # Parent 0b33941b59ef7cbcb25f2d6185a8bfa60e7b9efd Moar. diff -r 0b33941b59ef -r 2c088480ba9e mutt/mailcap --- a/mutt/mailcap Thu Apr 19 14:12:31 2012 +0100 +++ b/mutt/mailcap Fri Apr 20 14:00:31 2012 +0100 @@ -28,6 +28,7 @@ # HTML text/html; ~/.mutt/view_attachment.sh %s html +ext/html; ~/.mutt/view_attachment.sh %s html # Unidentified. application/octet-stream; ~/.mutt/view_attachment.sh %s "-" diff -r 0b33941b59ef -r 2c088480ba9e mutt/offlineimapsync.sh --- a/mutt/offlineimapsync.sh Thu Apr 19 14:12:31 2012 +0100 +++ b/mutt/offlineimapsync.sh Fri Apr 20 14:00:31 2012 +0100 @@ -5,11 +5,11 @@ function sync_normal { echo "NORMAL Sync" - /usr/local/bin/offlineimap -o -u quiet + /usr/local/share/python/offlineimap -o -u quiet } function sync_quick { echo "QUICK Sync" - /usr/local/bin/offlineimap -o -q -u quiet + /usr/local/share/python/offlineimap -o -q -u quiet } # This is silly. diff -r 0b33941b59ef -r 2c088480ba9e vim/vimrc --- a/vim/vimrc Thu Apr 19 14:12:31 2012 +0100 +++ b/vim/vimrc Fri Apr 20 14:00:31 2012 +0100 @@ -305,6 +305,10 @@ vnoremap S y:execute @@:echo 'Sourced selection.' nnoremap S ^vg_y:execute @@:echo 'Sourced line.' +" Back find-repeat +" TODO: Why does this not work? +nnoremap … dd + " Marks and Quotes noremap ' ` noremap æ ' @@ -338,6 +342,9 @@ " Toggle [i]nvisible characters nnoremap i :set list! +" Has to be an autocommand because repeat.vim eats the mapping otherwise :( +au VimEnter * :nnoremap U + " Drag Lines {{{ " and to drag lines in any mode @@ -402,7 +409,7 @@ set virtualedit+=block -noremap :noh:call clearmatches() +noremap :noh:call clearmatches() runtime macros/matchit.vim map % diff -r 0b33941b59ef -r 2c088480ba9e zshrc --- a/zshrc Thu Apr 19 14:12:31 2012 +0100 +++ b/zshrc Fri Apr 20 14:00:31 2012 +0100 @@ -19,6 +19,7 @@ alias tm='tmux -u2' alias c='clear' alias bp='bpython' +alias oi='offlineimap' export DISABLE_AUTO_TITLE="true"