Skip to content

Instantly share code, notes, and snippets.

# check if a mail has interesting content for me based on a keyword
# search
SHELL=/bin/sh
PATH="$HOME/bin:/usr/bin:/usr/local/bin:/usr/include:/usr/local/sbin:/bin:/sbin:/usr/sbin"
TESTDIR=/tmp/procmailtest
MAILDIR=${TESTDIR}
LOGFILE=${TESTDIR}/Proctest.log
LOGABSTRACT=all
VERBOSE=yes
@romanofski
romanofski / zshrc
Created October 17, 2012 04:38
My ZSHRc
# The default hostname to display in the shell prompt. Maybe override this
# later for specific hosts.
# http://www.gentoo.org/doc/en/zsh.xml
# remove "/" from WORDCHARS to that path segments are considered as words
# when editing the command line.
DISABLE_AUTO_UPDATE="true"
WORDCHARS=${WORDCHARS:s@/@}
export ZSH=$HOME/.oh-my-zsh
@romanofski
romanofski / Makefile
Created August 27, 2012 22:11
romanofskis vimrc
_snippets: snippets
ln -s $(shell pwd)/$< $(HOME)/.vim/snippets
.vimrc: vimrc
mkdir -p $(HOME)/.vim
git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim
ln -s $(shell pwd)/$< $(HOME)/$@
install: .vimrc snippets
vim +PluginInstall +qall