Skip to content

Instantly share code, notes, and snippets.

@i5ar
Last active November 2, 2019 00:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save i5ar/8a33ab601bf788711dad37d0d5df6e0c to your computer and use it in GitHub Desktop.
Save i5ar/8a33ab601bf788711dad37d0d5df6e0c to your computer and use it in GitHub Desktop.
VS Code extensions and configuration

Manage extensions

Command line extension management for VS Code.

List extensions

List the extensions by running code --list-extensions.

Save the extensions in a file by running code --list-extensions > extensions.vsix.

Install extensions

Install the extensions by running code --install-extension extensions.vsix.

AureliaEffect.aurelia
CoenraadS.bracket-pair-colorizer-2
DavidAnson.vscode-markdownlint
EditorConfig.EditorConfig
FallenMax.mithril-emmet
PeterJausovec.vscode-docker
Tyriar.sort-lines
WallabyJs.quokka-vscode
WallabyJs.quokka-vscode
abusaidm.html-snippets
alefragnani.Bookmarks
burkeholland.simple-react-snippets
dbaeumer.vscode-eslint
donjayamanne.jupyter
esbenp.prettier-vscode
felixfbecker.php-debug
felixfbecker.php-intellisense
felixfbecker.php-pack
formulahendry.auto-close-tag
formulahendry.code-runner
jeremyrajan.webpack
jpoissonnier.vscode-styled-components
marcostazi.VS-code-vagrantfile
ms-python.python
ms-vscode.cpptools
msjsdiag.debugger-for-chrome
naumovs.color-highlight
ritwickdey.LiveServer
samverschueren.yo
steoates.autoimport
streetsidesoftware.code-spell-checker
vscoss.vscode-ansible
yoyo.D3Snippets
{
"bracket-pair-colorizer-2.showHorizontalScopeLine": false,
"bracket-pair-colorizer-2.colors": [
"#6c71c4",
"#b58900",
"#859900",
],
"terminal.integrated.fontFamily": "DejaVu Sans Mono",
"editor.fontFamily": "DejaVu Sans Mono",
"editor.fontSize": 16,
"editor.renderWhitespace": "boundary",
"editor.rulers": [
80
],
"editor.colorDecorators": false,
"editor.snippetSuggestions": "top",
"editor.wordWrap": "on",
"emmet.syntaxProfiles": {
"html": "xhtml",
"javascript": [
"jsx",
"js"
]
},
"explorer.confirmDelete": false,
"git.autofetch": true,
"javascript.implicitProjectConfig.experimentalDecorators": true,
"python.linting.flake8Enabled": true,
"python.linting.pylintEnabled": true,
"python.linting.pylintArgs": [
"--disable=C0111, R0903"
],
"telemetry.enableTelemetry": false,
"window.zoomLevel": 2,
"workbench.colorTheme": "Solarized Dark",
"workbench.statusBar.feedback.visible": false
}
{
"cSpell.ignoreWords": [
"functools",
],
"mithrilEmmet.vnodeFactoryFunctionName": "h",
"prettier.eslintIntegration": true,
"python.pythonPath": "python3.6"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment