# HG changeset patch # User Dirk Olmes # Date 1440576699 -7200 # Node ID a574c668b7999e0fe34cf0087fbe4edb19eac720 # Parent 60c4b60b2945027e72d8a6dd1bd8b758cc87bdc3# Parent fbf37490216132ccc7356313829ddd9e926c3bff Automated merge with https://xanthippe.duckdns.org/hg/zsh-env diff -r fbf374902161 -r a574c668b799 zshrc --- a/zshrc Wed Aug 26 10:11:27 2015 +0200 +++ b/zshrc Wed Aug 26 10:11:39 2015 +0200 @@ -28,6 +28,7 @@ # custom functions/aliases that should work on all platforms cd() { builtin cd "$@"; print -D $PWD; } ff() { find $2 -print0 | xargs -0 grep $1 } +gve() { grep -ve '^#' $1 | uniq | less } hgrep() { history | grep $* } mcd() { mkdir $1; cd $1 } psg() { ps auxww | grep -v grep | grep -i "$@" } @@ -39,7 +40,7 @@ # no history handling for now ... or find a better way to save history per shell not across all shells export HISTFILE= -export HISTSIZE=100 +export HISTSIZE=500 # emulate tcsh's behaviour for forked processes: do not warn, do not kill when shell is closed setopt nohup diff -r fbf374902161 -r a574c668b799 zshrc-quad64 --- a/zshrc-quad64 Wed Aug 26 10:11:27 2015 +0200 +++ b/zshrc-quad64 Wed Aug 26 10:11:39 2015 +0200 @@ -5,6 +5,7 @@ . $HOME/.zsh-env/zshrc-jdk . $HOME/.zsh-env/zshrc-maven +export BUILD_NUMBER=0000 export MANPAGER=most export PATH="$HOME/bin:${PATH}" export PGUSER=postgres diff -r fbf374902161 -r a574c668b799 zshrc-xanthippe --- a/zshrc-xanthippe Wed Aug 26 10:11:27 2015 +0200 +++ b/zshrc-xanthippe Wed Aug 26 10:11:39 2015 +0200 @@ -14,3 +14,5 @@ export GPG_TTY=`tty` export PATH="$HOME/bin:${PATH}" + +alias top=htop