Jump to content

User:Int 80h/files/.zshenv

From Wikipedia, the free encyclopedia

Functions go here.

Rest goes into .zshrc.

# zsh env file
#
# Maintainer:   Szymon 'Polemon' Bereziak <polemon@polemon.org>
# Last Change:  2015-07-05
# URL:          http://polemon.org
# Version:      0.1
#

# provide quick atool function if present
if which atool &>/dev/null; then
    function a {
        if [ "x$2" = "x" ]; then
            aunpack $1
        else
            apack $@
        fi
    }
fi