X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=zsh%2F.zshrc;h=5541be9ce962a518836c67405666b74dd117082a;hb=cb78cc4f667254733490b9f2a18e74c5a0f2c98f;hp=048fee325f080804863f9409a343d93c463fe33e;hpb=f51006942c42932c1db15534f8d3f9b47a69704a;p=dotfiles.git diff --git a/zsh/.zshrc b/zsh/.zshrc index 048fee3..5541be9 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -82,6 +82,9 @@ alias m="less " alias -g M="| less" alias -g W="| wc -l" alias mc="mc --nomouse" +alias sent="mutt -f =sent-`date '+%y-%m'`" +alias zc="rlwrap -S '> ' dc" +alias gpgaes="gpg --cipher-algo AES-128" f() { # find . -name "*$1*" -print @@ -131,7 +134,7 @@ bindkey -s "OR" " git status --short\n" # F3 # grep {{{ GREP=/usr/local/bin/grep -GREP_ARGS="--color=always --with-filename --line-number --recursive" +GREP_ARGS="--color=always --with-filename --line-number --dereference-recursive" LESS_COLORED="less --RAW-CONTROL-CHARS" g() { $GREP ${=GREP_ARGS} $@ | ${=LESS_COLORED} @@ -164,11 +167,6 @@ alias rss="mutt -f \=rss" bindkey -s "OP" " inc\n" # F1 # }}} -# Calculator {{{ -autoload -U zcalc -alias zc="zcalc" -# }}} - # Named directories {{{ . ~/.zhashd # }}} @@ -196,11 +194,12 @@ autoload -U complist ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets) . ~/work/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh typeset -A ZSH_HIGHLIGHT_STYLES -ZSH_HIGHLIGHT_STYLES[assign]="fg=cyan" +ZSH_HIGHLIGHT_STYLES[assign]="fg=yellow" ZSH_HIGHLIGHT_STYLES[commandseparator]="fg=red" ZSH_HIGHLIGHT_STYLES[single-hyphen-option]="fg=green,bold" ZSH_HIGHLIGHT_STYLES[double-hyphen-option]="fg=green" ZSH_HIGHLIGHT_STYLES[globbing]="fg=magenta" +ZSH_HIGHLIGHT_STYLES[global-alias]="fg=yellow,bold" ZSH_HIGHLIGHT_STYLES[history-expansion]="fg=magenta" ZSH_HIGHLIGHT_STYLES[redirection]="fg=red" ZSH_HIGHLIGHT_STYLES[path]="fg=white,underline"