This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| _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 |
NewerOlder