There was an error while loading. Please reload this page.
1 parent 64afd15 commit 36405e0Copy full SHA for 36405e0
install.sh
@@ -26,3 +26,12 @@ git clone https://github.com/spaceship-prompt/spaceship-prompt.git "$ZSH_CUSTOM/
26
27
# create a symlink
28
ln -s "$ZSH_CUSTOM/themes/spaceship-prompt/spaceship.zsh-theme" "$ZSH_CUSTOM/themes/spaceship.zsh-theme"
29
+
30
+# install vscode
31
+sudo apt install software-properties-common apt-transport-https wget
32
+# Import the Microsoft GPG key
33
+wget -q https://packages.microsoft.com/keys/microsoft.asc -O- | sudo apt-key add -
34
+# add repository
35
+sudo add-apt-repository "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main"
36
+# install vs-code
37
+sudo apt install code
0 commit comments