Files
dotfiles/zsh/.zshenv
Fabio Scotto di Santolo 2d60b7f1c3 Update ZSH configurations
2024-12-31 14:28:21 +01:00

16 lines
446 B
Bash

[ -f "$HOME/.ghcup/env" ] && . "$HOME/.ghcup/env"
if [ -f "/home/linuxbrew/.linuxbrew/bin/brew" ]; then
# Initialize Homebrew
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
fi
if command -v oh-my-posh > /dev/null 2>&1; then
# Initialize Oh My Posh
eval "$(oh-my-posh init zsh --config "$(brew --prefix oh-my-posh)/themes/peru.omp.json")"
fi
export VIRTUAL_ENV_DISABLE_PROMPT=1
export EDITOR=nvim
export HOMEBREW_NO_ENV_HINTS=1