Mercurial > hg > zsh-env
view zshrc-gentoo @ 53:71da2af2ecd7
update the location of ant, add aliases for ex-eclipse and ex-dist
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Thu, 18 Sep 2014 02:31:44 +0200 |
parents | 1e38ed9eb354 |
children | 556b1cef101f |
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" alias xm="xmodmap ~/.Xmodmap" # custom functions for gentoo kcs() { source $HOME/.keychain/${HOST}-sh } 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/"$@" }