diff --git a/vscode/settings.json b/vscode/settings.json index c4c012c..4ce9c6c 100644 --- a/vscode/settings.json +++ b/vscode/settings.json @@ -26,5 +26,6 @@ "python.defaultInterpreterPath": "~/.conda/envs/q2dev/bin/python", "python.terminal.activateEnvInCurrentTerminal": true, "python.languageServer": "Microsoft", - "liveshare.authenticationProvider": "GitHub" + "liveshare.authenticationProvider": "GitHub", + "editor.inlineSuggest.enabled": true } diff --git a/zsh/zshrc b/zsh/zshrc index f4039d6..b8a9363 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -14,6 +14,8 @@ if [[ -s "/opt/miniconda3/etc/profile.d/conda.sh" ]]; then source /opt/miniconda3/etc/profile.d/conda.sh fi +source "$HOME/.cargo/env" + # shortcuts alias q="conda activate q2dev" alias i="ipython3"