view zshrc-gentoo @ 30:c58e6033e2cb

get rid of the hostx alias, all machines should have the proper bind-tools installed
author Dirk Olmes <dirk@xanthippe.ping.de>
date Wed, 12 Sep 2012 03:46:14 +0200
parents f5c6324fc952
children aeab5ab060f5
line wrap: on
line source

#
# zshrc-gentoo: gentoo specific initialization
#

# keychain setup: authenticate to remote hosts only once
local keychain_init_file=$HOME/.keychain/${HOST}-sh
if [ -r ${keychain_init_file} ]; then
    . ${keychain_init_file}
fi

# custom environment variables
export EDITOR=/usr/bin/nano
export PATH="${PATH}":/opt/bin

# custom aliases for gentoo
alias es="ionice -c3 emerge --sync"
alias wu="emerge -uvDa world"

# custom functions for gentoo
kcs() { source $HOME/.keychain/${HOST}-sh }

if [ "`alias | grep 'll='`" != "" ]; then
    unalias ll
fi
ll() { /usr/bin/env -u LC_ALL LANG=C ls -laFh "$@" | more }

lr() { /usr/bin/env -u LC_ALL LANG=C ls -rtlh "$@" }
service() { /etc/init.d/"$@" }