1
0
mirror of https://github.com/akelge/zsh synced 2025-07-04 05:29:06 +00:00

Test of integration of brew and utils

This commit is contained in:
2021-10-28 10:11:01 +02:00
parent 360ae5fa01
commit a98a44ba5d
6 changed files with 42 additions and 30 deletions

View File

@ -3,8 +3,6 @@
## Vars used always
PATH="/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:$HOME/bin:."
# LANG="it_IT.UTF-8"
# TZ='Europe/Rome'
MIBS=all
LOGD=/var/log
@ -27,10 +25,20 @@ EDITOR=vim
VISUAL=vim
export QUOTING_STYLE=escape
#
# Hack for svn
export SVN_EDITOR=${VISUAL}
# Setup brew
# We need it here to fix the PATH
# so we can setup pyenv and other stuff
for prefix in /usr/local /opt/homebrew; do
brew=$(whence $prefix/bin/brew)
if [ $brew ]; then
eval "$($brew shellenv)"
fi
done
# Set umask to collaborative mode
umask 002
# vim: set ts=4 sw=4 tw=0 ft=zsh :