1
0
Fork 0
mirror of https://github.com/MillironX/dotfiles.git synced 2024-11-14 19:03:09 +00:00
dotfiles/dot_zshenv.tmpl

13 lines
287 B
Cheetah
Raw Normal View History

2021-10-20 13:06:01 +00:00
# shellcheck shell=zsh
2021-08-26 12:52:09 +00:00
# Linuxbrew setup
if [ -d $HOME/../linuxbrew/.linuxbrew ]; then
BREWPATH=$HOME/../linuxbrew/.linuxbrew
elif [ -d $HOME/.linuxbrew ]; then
BREWPATH=$HOME/.linuxbrew
fi
if [ -n "$BREWPATH" ]; then
2021-08-26 12:53:37 +00:00
fpath+=($BREWPATH/share/zsh/site-functions)
export fpath
2021-08-26 12:52:09 +00:00
fi