-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathvscode-extensions.sh
executable file
·101 lines (93 loc) · 3.21 KB
/
vscode-extensions.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#!/bin/bash
reset
RED="\e[31m"
GREEN="\e[32m"
BLUE="\e[34m"
BLACK="\e[30m"
YELLOW="\e[33m"
GRAY="\e[36m"
WHITE="\e[97m"
ENDCOLOR="\e[0m"
echo -e "
${RED}
████████╗██╗ ██████╗ ██╗ ██████╗ ██████╗ ███████╗
╚══██╔══╝██║██╔═══██╗ ██║██╔═══██╗██╔══██╗██╔════╝
██║ ██║██║ ██║ ██║██║ ██║██████╔╝███████╗
██║ ██║██║ ██║ ██ ██║██║ ██║██╔══██╗╚════██║
██║ ██║╚██████╔╝ ╚█████╔╝╚██████╔╝██████╔╝███████║
╚═╝ ╚═╝ ╚═════╝ ╚════╝ ╚═════╝ ╚═════╝ ╚══════╝
${ENDCOLOR}
[*] Author: Tio Jobs
${RED}[*] YouTube:${ENDCOLOR} https://www.youtube.com/@tiojobs
${GRAY}[*] GitHub:${ENDCOLOR} https://github.com/icarojobs
${BLUE}[*] Twitter:${ENDCOLOR} https://twitter.com/tio_jobs
${YELLOW}[*] E-mail:${ENDCOLOR} [email protected]
"
extensions=(
k--kato.intellij-idea-keybindings
Zignd.html-css-class-completion
nathanchapman.JavaScriptSnippets
xdebug.php-pack
bmewburn.vscode-intelephense-client
MehediDracula.php-namespace-resolver
junstyle.php-cs-fixer
DEVSENSE.phptools-vscode
onecentlin.laravel-blade
onecentlin.laravel5-snippets
ryannaddy.laravel-artisan
amiralizadeh9480.laravel-extra-intellisense
codingyu.laravel-goto-view
naoray.laravel-goto-components
shufo.vscode-blade-formatter
whatwedo.twig
dbaeumer.vscode-eslint
SonarSource.sonarlint-vscode
ecodes.vscode-phpmd
ms-azuretools.vscode-docker
smulyono.reveal
esbenp.prettier-vscode
EditorConfig.EditorConfig
formulahendry.auto-rename-tag
formulahendry.auto-close-tag
mrmlnc.vscode-apache
redhat.vscode-yaml
mikestead.dotenv
humao.rest-client
Shan.code-settings-sync
eamodio.gitlens
oderwat.indent-rainbow
emeraldwalk.RunOnSave
MS-vsliveshare.vsliveshare
ritwickdey.LiveServer
ms-vscode-remote.remote-ssh
ms-vscode-remote.remote-wsl
formulahendry.vscode-mysql
aaron-bond.better-comments
bradlc.vscode-tailwindcss
hbenl.vscode-test-explorer
recca0120.vscode-phpunit
m1guelpf.better-pest
dansysanalyst.pest-snippets
alefragnani.Bookmarks
donjayamanne.githistory
ecmel.vscode-html-css
msjsdiag.vscode-react-native
styled-components.vscode-styled-components
NativeBase.nativebase-v3-vscode-extension
kamikillerto.vscode-colorize
yzhang.markdown-all-in-one
yzane.markdown-pdf
DavidAnson.vscode-markdownlint
wayou.vscode-todo-highlight
DotJoshJohnson.xml
Vue.volar
natqe.reload
DEVSENSE.phptools-vscode
robertgr991.php-parameter-hint
austenc.laravel-blade-spacer
EQuimper.react-native-react-redux
)
for extension in "${extensions[@]}"
do
code --install-extension $extension
done