9 lines
155 B
Bash
9 lines
155 B
Bash
#!/bin/zsh
|
|
# .zshenv always runs
|
|
# Set Env Vars here
|
|
|
|
#fix permissions errors
|
|
export ZSH_DISABLE_COMPFIX=true
|
|
|
|
# Load .profile
|
|
[[ -f ~/.env ]] && . ~/.env
|