” Los’ .vimrc ” http://www.carlos-m.net/
set tabstop=4 set shiftwidth=4 set shiftround set expandtab set autoindent set laststatus=4 set ruler hi Comment ctermfg=Cyan
:autocmd FileType mail :nmap :w:!aspell -e -c %:e
|
||||||
|
” Los’ .vimrc ” http://www.carlos-m.net/ set tabstop=4 set shiftwidth=4 set shiftround set expandtab set autoindent set laststatus=4 set ruler hi Comment ctermfg=Cyan :autocmd FileType mail :nmap :w:!aspell -e -c %:e [code] # # Sort mail from bugtraq mailing list # -Carlos Macasaet # http://www.carlos-m.net/ # :0: bugtraq.lock * ^List-ID:.*bugtraq\.list-id\.securityfocus\.com | $RCVSTORE +bugtraq [/code] [code] # spam.rc # -ifile: http://www.nongnu.org/ifile/ # in addition, I use Martin Macok's scripts for using ifile with procmail # - http://xtrmntr.org/ORBman/ifile.procmail.html # directories used BINDIR=$HOME/usr/bin # programs used KSH=$BINDIR/ksh # Insert ifile header info # if you don't want to learn from new messages, use ifile.inject.header :0 fBw | $KSH $BINDIR/ifile.inject-learn.header # and now [...] [code] # announcements.rc # moves all mail from addresses in announcers.lst to the folder "announcements" # -Carlos Macasaet # http://www.carlos-m.net/ :0 * ? formail -x"From:" -x"From:" -x"Sender:"\ -x"Reply-To:" -x"Return-Path:"\ | egrep -is -f $PMDIR/announcers.lst { :0: announcements.lock | $RCVSTORE +announcements } [/code] [code] # # Carlos Macasaet's ZSH Configuration # http://www.carlos-m.net/ # # some global options setopt KSH_GLOB setopt SH_GLOB setopt NO_BARE_GLOB_QUAL setopt GLOB_SUBST setopt NO_HUP setopt AUTO_CD setopt CD_ABLE_VARS # set environment export EDITOR=/usr/bin/vim export VISUAL=$EDITOR export FCEDIT=$EDITOR export PAGER=/usr/bin/less export TMPDIR=$HOME/tmp umask 022 # set path and manpath path=( $HOME/bin $HOME/usr/bin /usr/local/bin /bin /usr/bin /usr/X11R6/bin [...] [code] # # Carlos Macasaet's .procmailrc # http://www.carlos-m.net/ # # # Common Directories # HOME = /home/$USER MAILDIR = $HOME/Mail # MH... represent LOGDIR = $HOME/var/log PMDIR = $HOME/etc/procmail # recipes stored here NMHDIR = /usr/lib/nmh # # Common Programs # RCVSTORE = $NMHDIR/rcvstore # stores MH messages RCVTTY = $NMHDIR/rcvtty # new mail notification [...] |
||||||
|
Copyright © 2012 carlos-m.net - All Rights Reserved |
||||||