Skip to content

Instantly share code, notes, and snippets.

@ma7dev
Created June 7, 2022 01:18
Show Gist options
  • Save ma7dev/e7761c719ad653ec12777adad6f85bae to your computer and use it in GitHub Desktop.
Save ma7dev/e7761c719ad653ec12777adad6f85bae to your computer and use it in GitHub Desktop.
Store and Install VSCode extensions

VSCode

# conda env export > environment. yml
code --list-extensions > requirements.txt

# conda env create --file environment.yml
./install.sh
#!/bin/bash
while read -r line; do
echo $line
code --install-extension $line
done < "requirements.txt"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment