diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2009-11-12 22:02:20 +0100 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2009-11-12 22:02:20 +0100 |
commit | c7927ea61730bd6d8a283078d89dffdca08535cd (patch) | |
tree | 2f6098a2aa4070d9d35c6a4c1cf9614a8da9c0f6 /etc/parameters | |
parent | d3d4767fb5ba7e036cdbb8e351f678e54e95078f (diff) |
Merge stuff into .zshrc
Diffstat (limited to 'etc/parameters')
-rw-r--r-- | etc/parameters | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/etc/parameters b/etc/parameters deleted file mode 100644 index b05e245..0000000 --- a/etc/parameters +++ /dev/null @@ -1,43 +0,0 @@ -## vim:ft=zsh -## parameters which are only important for interactive shells. -## For application-related parameters, see zshenv - -# zsh cache directory -if [[ -d ~/var/cache/zsh ]] { - ZCACHEDIR=~/var/cache/zsh -} else { - zrc_info "~/var/cache/zsh does not exist, using ~/.zsh-cache instead" - mkdir -p ~/.zsh-cache - ZCACHEDIR=~/.zsh-cache -} - -# There's no point in having more history than what can be saved on disk -HISTFILE=$ZCACHEDIR/history -HISTSIZE=50000 -SAVEHIST=$HISTSIZE - -# how many entries to keep for popd -DIRSTACKSIZE=20 - -# Use the full terminal size for listings -LISTMAX=0 - -# be accurate -TIMEFMT='%J (%P) - %*E real, %*U user, %*S system' - -# completion cache for compinit -compdump=$ZCACHEDIR/compdump - -if ((EUID)) { - path+=(/sbin /usr/sbin /usr/local/sbin) -} - -export MAKEFLAGS=j$(grep -c '^processor' /proc/cpuinfo) - -# Add my own executables, if they're not already in the path -[[ $path[1] = $HOME/bin ]] || export PATH=$HOME/bin:$PATH - -# Add manuals from caretaker to manpath -which manpath &> /dev/null && [[ -z $MANPATH ]] && export MANPATH=$(manpath):$HOME/packages/.collected/man - -openbsd: export PKG_PATH="ftp://ftp.freenet.de/pub/ftp.openbsd.org/pub/OpenBSD/`uname -r`/packages/`machine -a`/:ftp://openbsd.ftp.fu-berlin.de/pub/OpenBSD/`uname -r`/packages/`machine -a`/" |