summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian C. (anrxc) <anrxc@sysphere.org>2009-10-22 19:03:45 +0200
committerAdrian C. (anrxc) <anrxc@sysphere.org>2009-10-22 19:06:48 +0200
commitd13c09b6c1215474b5c84728226c1ce531409973 (patch)
tree66f2ff0603d9b822afa717ed95a300dd74ec1c38
parent939c4450e6df8452eff54658e1bd12efefb04d5e (diff)
downloaddotfiles-d13c09b6c1215474b5c84728226c1ce531409973.tar.xz
zshrc: history reduced to 10000
-rw-r--r--zshrc6
1 files changed, 3 insertions, 3 deletions
diff --git a/zshrc b/zshrc
index caf8d37..4d92f61 100644
--- a/zshrc
+++ b/zshrc
@@ -8,8 +8,8 @@
# {{{ Environment
export PATH=$PATH:~/code/bin
export HISTFILE=~/.zsh_history
-export HISTSIZE=25000
-export SAVEHIST=25000
+export HISTSIZE=10000
+export SAVEHIST=10000
export LESSHISTFILE="-"
export PAGER="less"
export EDITOR="emacsclient"
@@ -154,7 +154,7 @@ compctl -k '(add delete draft edit list import preview publish update)' nb
# }}}
# {{{ Functions
-function yn () { $BROWSER "http://yubnub.org/parser/parse?command=$*" }
+function web () { $BROWSER "http://yubnub.org/parser/parse?command=$*" }
function pmem () { ps -o rss,comm -p $(pgrep $1) }
function dsync () { rsync -lprt --progress --stats --delete "$1/" "$2/" }