-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbootstrap-vscode.sh
executable file
·83 lines (57 loc) · 2.26 KB
/
bootstrap-vscode.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
echo "Installing vscode extensions"
echo "Installing Language support for JAVA"
code --install-extension redhat.java
echo "Installing Beautify"
code --install-extension HookyQR.beautify
echo "Installing Debugger for Chrome"
code --install-extension msjsdiag.debugger-for-chrome
echo "Installing Python support"
code --install-extension ms-python.python
echo "Installing C/C++ support"
code --install-extension ms-vscode.cpptools
echo "Installing ESLint support"
code --install-extension dbaeumer.vscode-eslint
echo "Installing vscode icons"
code --install-extension robertohuertasm.vscode-icons
echo "Installing Go support"
code --install-extension ms-vscode.Go
echo "Installing Project Manager"
code --install-extension alefragnani.project-manager
echo "Installing Ruby support"
code --install-extension rebornix.Ruby
echo "Installing One Dark Pro theme"
code --install-extension zhuangtongfa.Material-theme
echo "Installing Git Extension Pack"
code --install-extension donjayamanne.git-extension-pack
echo "Installing npm Intellisense"
code --install-extension christian-kohler.npm-intellisense
echo "Installing npm support"
code --install-extension eg2.vscode-npm-script
echo "Installing vim support"
code --install-extension vscodevim.vim
echo "Installing jinja support"
code --install-extension wholroyd.jinja
echo "Installing jupyter support"
code --install-extension donjayamanne.jupyter
echo "Install run snippet support"
code --install-extension formulahendry.code-runner
echo "Install run babel support"
code --install-extension mrorz.language-gettext
echo "Setup User Settings"
if [ "$platform" == 'darwin' ]; then
ln -s $PWD/vscode/settings.json $HOME/Library/"Application Support"/Code/User
else
ln -s $PWD/vscode/settings.json $HOME/.config/Code/User
fi
echo "Install markdownlint"
code --install-extension DavidAnson.vscode-markdownlint
echo "Install Prettier"
code --install-extension esbenp.prettier-vscode
echo "Install Babel E6/E7"
code --install-extension dzannotti.vscode-babel-coloring
echo "Install Typescript tslint plugin"
code --install-extension ms-vscode.vscode-typescript-tslint-plugin
echo "Install Excel Viewer"
code --install-extension GrapeCity.gc-excelviewer
echo "Install Calva Clojure Extension"
code --install-extension betterthantomorrow.calva