diff --git a/zsh/func/init-env-unix b/zsh/func/init-env-unix deleted file mode 100644 index c34c07c..0000000 --- a/zsh/func/init-env-unix +++ /dev/null @@ -1,20 +0,0 @@ -# Eryn Wells - -autoload -Uz binary_exists - -function init-env-unix -{ - export PAGER="less" - export MANPAGER=$PAGER - export VISUAL=$EDITOR - export LESSHISTFILE="-" - export GREP_OPTIONS="--color=auto" - export GREP_COLOR="1;32" - - if binary_exists gpg2; then - # Make sure gpg2 knows what to do with the curses-based smartcard PIN prompt. - export GPG_TTY=`tty` - fi -} - -init-env-unix "$@" diff --git a/zshenv b/zshenv index 7081917..344fc7d 100644 --- a/zshenv +++ b/zshenv @@ -30,7 +30,6 @@ autoload -Uz do_init_functions typeset -a zsh_init_env_functions=( \ init-env \ init-env-path \ - init-env-unix \ init-env-python \ init-env-playdate \ init-env-vi \