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