Skip to content
Discussion options

You must be logged in to vote

Can you try /Applications/CodeWhisperer.app/Contents/MacOS/cw integrations install dotfiles?

If that doesn't work you can manually edit your dotfiles using:

.bashrc:

# CodeWhisperer pre block. Keep at the top of this file.
[[ -f "${HOME}/Library/Application Support/codewhisperer/shell/bashrc.pre.bash" ]] && builtin source "${HOME}/Library/Application Support/codewhisperer/shell/bashrc.pre.bash"

# ... current .bashrc here

# CodeWhisperer post block. Keep at the bottom of this file.
[[ -f "${HOME}/Library/Application Support/codewhisperer/shell/bashrc.post.bash" ]] && builtin source "${HOME}/Library/Application Support/codewhisperer/shell/bashrc.post.bash"

and .bash_profile

# CodeWhisper…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@NaotoKubota
Comment options

Answer selected by NaotoKubota
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment