-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
27 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# CodeWhisperer pre block. Keep at the top of this file. | ||
if [[ -f "${HOME}/Library/Application Support/codewhisperer/shell/zshrc.pre.bash" ]]; then | ||
builtin source "${HOME}/Library/Application Support/codewhisperer/shell/zshrc.pre.bash" | ||
fi | ||
|
||
if [[ -d ${HOME}/.pyenv && -z ${PYENV_ROOT} ]]; then | ||
export PYENV_ROOT="${HOME}/.pyenv" | ||
export PATH="${PYENV_ROOT}/bin:${PATH}" | ||
eval "$(pyenv init -)" | ||
alias awsume="source \$(pyenv which awsume)" | ||
fi | ||
|
||
if [[ ! $PATH == *"${HOME}/.local/bin"* && -d "${HOME}/.local/bin" ]]; then | ||
export PATH="$PATH:${HOME}/.local/bin" | ||
fi | ||
|
||
# CodeWhisperer post block. Keep at the bottom of this file. | ||
if [[ -f "${HOME}/Library/Application Support/codewhisperer/shell/zshrc.post.bash" ]]; then | ||
builtin source "${HOME}/Library/Application Support/codewhisperer/shell/zshrc.post.bash" | ||
fi | ||
# Fig Ignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters