Skip to content

Instantly share code, notes, and snippets.

@rafaelmaiach
Last active June 21, 2023 13:35
Show Gist options
  • Save rafaelmaiach/12d3c3f2caf3268d4eeb56a78b5bfc2d to your computer and use it in GitHub Desktop.
Save rafaelmaiach/12d3c3f2caf3268d4eeb56a78b5bfc2d to your computer and use it in GitHub Desktop.
VSCode installed extensions
code --install-extension abusaidm.html-snippets
code --install-extension alexdima.copy-relative-path
code --install-extension christian-kohler.npm-intellisense
code --install-extension christian-kohler.path-intellisense
code --install-extension CoenraadS.bracket-pair-colorizer-2
code --install-extension cssho.vscode-svgviewer
code --install-extension darkriszty.markdown-table-prettify
code --install-extension DavidAnson.vscode-markdownlint
code --install-extension dbaeumer.vscode-eslint
code --install-extension dracula-theme.theme-dracula
code --install-extension dsznajder.es7-react-js-snippets
code --install-extension dzannotti.vscode-babel-coloring
code --install-extension ecmel.vscode-html-css
code --install-extension EditorConfig.EditorConfig
code --install-extension eg2.vscode-npm-script
code --install-extension emmanuelbeziat.vscode-great-icons
code --install-extension eriklynd.json-tools
code --install-extension formulahendry.auto-close-tag
code --install-extension formulahendry.auto-rename-tag
code --install-extension formulahendry.code-runner
code --install-extension hollowtree.vue-snippets
code --install-extension ionutvmi.path-autocomplete
code --install-extension mgmcdermott.vscode-language-babel
code --install-extension mikestead.dotenv
code --install-extension mohsen1.prettify-json
code --install-extension mrmlnc.vscode-scss
code --install-extension ms-azuretools.vscode-docker
code --install-extension ms-vscode-remote.remote-ssh
code --install-extension ms-vscode-remote.remote-ssh-edit
code --install-extension ms-vscode-remote.remote-wsl
code --install-extension ms-vsliveshare.vsliveshare
code --install-extension msjsdiag.vscode-react-native
code --install-extension naumovs.color-highlight
code --install-extension octref.vetur
code --install-extension oderwat.indent-rainbow
code --install-extension ritwickdey.LiveServer
code --install-extension Shan.code-settings-sync
code --install-extension shd101wyy.markdown-preview-enhanced
code --install-extension steoates.autoimport
code --install-extension vincaslt.highlight-matching-tag
code --install-extension wayou.vscode-todo-highlight
code --install-extension xabikos.JavaScriptSnippets
code --install-extension yzhang.markdown-all-in-one
code --install-extension Zignd.html-css-class-completion
{
"editor.fontSize": 13,
"editor.tabSize": 2,
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"vue-html": "html"
},
"emmet.triggerExpansionOnTab": true,
"eslint.validate": [
"javascript",
"javascriptreact",
"html",
"vue"
],
"files.eol": "\n",
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"html.format.endWithNewline": true,
"window.zoomLevel": 0,
"workbench.colorCustomizations": {
"activityBarBadge.background": "#2979FF",
"breadcrumb.activeSelectionForeground": "#2979FF",
"editor.background": "#0a1013",
"editorSuggestWidget.highlightForeground": "#2979FF",
"editorWidget.border": "#2979FF",
"editorWidget.resizeBorder": "#2979FF",
"list.activeSelectionForeground": "#2979FF",
"list.highlightForeground": "#2979FF",
"list.inactiveSelectionForeground": "#2979FF",
"menu.selectionForeground": "#2979FF",
"menubar.selectionForeground": "#2979FF",
"notificationLink.foreground": "#2979FF",
"panelTitle.activeBorder": "#2979FF",
"pickerGroup.foreground": "#2979FF",
"progressBar.background": "#2979FF",
"scrollbarSlider.activeBackground": "#2979FF50",
"settings.headerForeground": "#2979FF",
"settings.modifiedItemIndicator": "#2979FF",
"statusBar.background": "#191b20",
"tab.activeBorder": "#2979FF",
"terminal.background": "#000",
"textLink.foreground": "#2979FF"
},
"workbench.colorTheme": "Dracula",
"workbench.iconTheme": "vscode-great-icons",
"editor.wordWrapColumn": 120,
"html.format.wrapAttributes": "preserve",
"javascript.validate.enable": false,
"liveServer.settings.donotShowInfoMsg": true,
"javascript.preferences.quoteStyle": "single",
"typescript.preferences.quoteStyle": "single",
"vetur.format.defaultFormatter.html": "js-beautify-html",
"vetur.format.options.tabSize": 2,
"vetur.format.options.useTabs": true,
"vetur.format.defaultFormatterOptions": {
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"tabWidth": 2,
"useTabs": true,
"vue-indent-script-and-style": true
},
"js-beautify-html": {
"wrap_attributes": "auto",
"space-after-anon-function": true,
"space-after-named-function": true
}
},
"vetur.format.scriptInitialIndent": true,
"vetur.format.styleInitialIndent": true,
"extensions.ignoreRecommendations": false,
"gitlens.hovers.currentLine.over": "line",
"editor.renderWhitespace": "all",
"editor.insertSpaces": false,
"editor.detectIndentation": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment