d3e0c0c7ff37

Stuff.
[view raw] [browse files]
author Steve Losh <steve@stevelosh.com>
date Thu, 04 Nov 2010 17:07:10 -0400
parents 1fd30a15f4fa
children 95ec2bfa74b6
branches/tags (none)
files .hgrc mutt/offlineimapsync.sh mutt/offlineimapsyncquick.sh vim/.vimrc

Changes

--- a/.hgrc	Wed Nov 03 09:06:42 2010 -0400
+++ b/.hgrc	Thu Nov 04 17:07:10 2010 -0400
@@ -138,6 +138,8 @@
           echo '*.swp'        >> .hgignore && \
           echo '*.swo'        >> .hgignore && \
           echo '*.un~'        >> .hgignore && \
+          echo '.ropeproject' >> .hgignore && \
+          echo 'tags'         >> .hgignore && \
           echo "[paths]\n" >> .hg/hgrc
 
 # Empty the current MQ patch.
--- a/mutt/offlineimapsync.sh	Wed Nov 03 09:06:42 2010 -0400
+++ b/mutt/offlineimapsync.sh	Thu Nov 04 17:07:10 2010 -0400
@@ -1,6 +1,7 @@
 #!/bin/sh
 
-kill `cat ~/.offlineimap/pid`
+PID=`cat ~/.offlineimap/pid`
+ps aux | grep "[ ]$PID" && kill $PID
 
 /usr/local/bin/offlineimap -o -u Noninteractive.Quiet &>/dev/null &
 
--- a/mutt/offlineimapsyncquick.sh	Wed Nov 03 09:06:42 2010 -0400
+++ b/mutt/offlineimapsyncquick.sh	Thu Nov 04 17:07:10 2010 -0400
@@ -1,7 +1,7 @@
 #!/bin/sh
 
-
-kill `cat ~/.offlineimap/pid`
+PID=`cat ~/.offlineimap/pid`
+ps aux | grep "[ ]$PID" && kill $PID
 
 /usr/local/bin/offlineimap -q -o -u Noninteractive.Quiet &>/dev/null &
 
--- a/vim/.vimrc	Wed Nov 03 09:06:42 2010 -0400
+++ b/vim/.vimrc	Thu Nov 04 17:07:10 2010 -0400
@@ -32,6 +32,9 @@
 set undofile
 set undoreload=10000
 
+" Status line
+set statusline=%F%m%r%h%w%=(%{&ff}/%Y)\ (line\ %l\/%L,\ col\ %c)
+
 " Backups
 set backupdir=~/.vim/tmp/backup// " backups
 set directory=~/.vim/tmp/swap//   " swap files