From f864d1390187e7fe03e1169433b97634ff636004 Mon Sep 17 00:00:00 2001 From: Matthew Dillon <matthewrdillon@gmail.com> Date: Tue, 13 Jul 2021 14:18:30 -0700 Subject: [PATCH] maint: vscode && cargo --- vscode/settings.json | 3 ++- zsh/zshrc | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) 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"