Compare commits
No commits in common. "f65628a82837f1856eb95d5ddae28b42963f226b" and "5a4cc71bb43aff2ea23e7c668859180f9dc6e568" have entirely different histories.
f65628a828
...
5a4cc71bb4
|
@ -3,7 +3,6 @@
|
||||||
ZSH_DEBUG="${ZSH_DEBUG:-0}"
|
ZSH_DEBUG="${ZSH_DEBUG:-0}"
|
||||||
|
|
||||||
ZSH_ALIAS=${ZSH_ALIAS:-1}
|
ZSH_ALIAS=${ZSH_ALIAS:-1}
|
||||||
ZSH_CUSTOM=${ZSH_CUSTOM:-1}
|
|
||||||
ZSH_DEFAULT_TERM=${ZSH_DEFAULT_TERM:-1}
|
ZSH_DEFAULT_TERM=${ZSH_DEFAULT_TERM:-1}
|
||||||
ZSH_GPG_PINENTRY_FIX=${ZSH_GPG_PINENTRY_FIX:-1}
|
ZSH_GPG_PINENTRY_FIX=${ZSH_GPG_PINENTRY_FIX:-1}
|
||||||
ZSH_POWERLINE="${ZSH_POWERLINE:-1}"
|
ZSH_POWERLINE="${ZSH_POWERLINE:-1}"
|
||||||
|
@ -45,18 +44,6 @@ log() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# Bin directories
|
|
||||||
section "python bin"
|
|
||||||
if [ -d "$HOME/Library/Python/3.7" ]; then
|
|
||||||
PATH="$HOME/Library/Python/3.7/bin:$PATH"
|
|
||||||
export PATH
|
|
||||||
fi
|
|
||||||
if [ -d "$HOME/Library/Python/2.7" ]; then
|
|
||||||
PATH="$HOME/Library/Python/2.7/bin:$PATH"
|
|
||||||
export PATH
|
|
||||||
fi
|
|
||||||
section_end
|
|
||||||
|
|
||||||
# Powerline
|
# Powerline
|
||||||
section "powerline"
|
section "powerline"
|
||||||
if [ $ZSH_POWERLINE -gt 0 ]; then
|
if [ $ZSH_POWERLINE -gt 0 ]; then
|
||||||
|
@ -164,19 +151,6 @@ if [ $ZSH_PRINT_REBOOT_REQUIRED -gt 0 ]; then
|
||||||
fi
|
fi
|
||||||
section_end
|
section_end
|
||||||
|
|
||||||
section "custom zshrc"
|
|
||||||
if [ $ZSH_CUSTOM -gt 0 ]; then
|
|
||||||
log "Checking if local profile code exists at ~/.local_zshrc..."
|
|
||||||
if [ -f ~/.local_zshrc ]; then
|
|
||||||
log "Exists, loading."
|
|
||||||
# shellcheck source=/dev/null
|
|
||||||
. ~/.local_zshrc
|
|
||||||
else
|
|
||||||
log "Does not exist, skipping."
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
section_end
|
|
||||||
|
|
||||||
|
|
||||||
# print env
|
# print env
|
||||||
section "Environment variables"
|
section "Environment variables"
|
||||||
|
|
Loading…
Reference in New Issue