Skip to content

Instantly share code, notes, and snippets.

@jamesmcallister
Last active November 16, 2017 11:18
Show Gist options
  • Save jamesmcallister/237c487e5700171d156bdc2f66fb5ada to your computer and use it in GitHub Desktop.
Save jamesmcallister/237c487e5700171d156bdc2f66fb5ada to your computer and use it in GitHub Desktop.
// to list extentions
// $ code --list-extensions
EditorConfig.EditorConfig
TimonVS.ReactSnippetsStandard
bialikover.theme-seti
chenxsan.vscode-standard-format
hoovercj.vscode-ghc-mod
justusadam.language-haskell
octref.tachyons
shinnn.standard
....
PeterJausovec.vscode-docker
TimonVS.ReactSnippetsStandard
jpoissonnier.vscode-styled-components
shinnn.standard
{
"editor.fontFamily": "Fira Code",
"editor.fontSize": 14,
"editor.fontLigatures": true,
"editor.renderIndentGuides": true,
"editor.formatOnSave": true,
"files.autoSave": "onFocusChange",
"emmet.triggerExpansionOnTab": true,
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"files.associations": {
"*.js": "javascriptreact"
},
"javascript.validate.enable": false,
"eslint.enable": true,
"eslint.trace.server": "on",
"eslint.options": {
"fix": true
}
}
@jamesmcallister
Copy link
Author

CoenraadS.bracket-pair-colorizer
WallabyJs.quokka-vscode
dbaeumer.vscode-eslint
jpoissonnier.vscode-styled-components
nonylene.dark-molokai-theme

{
"editor.fontFamily": "Fira Code",
"editor.fontSize": 14,
"editor.fontLigatures": true,
"editor.renderIndentGuides": true,
// "javascript.validate.enable": false,
// "typescript.npm": "",
"files.autoSave": "onFocusChange",
"editor.wordWrap": "on",
"window.zoomLevel": -1,
"editor.tabSize": 2,
"workbench.iconTheme": "vs-seti",
"editor.formatOnSave": true,
// "emmet.includeLanguages": {
// "javascript": "css"
// },
"search.exclude": {
"**/node_modules/": true
},
// "extensions.autoUpdate": false,
"eslint.enable": true,
"eslint.autoFixOnSave": true,
// "workbench.startupEditor": "newUntitledFile",
"[makefile]": {
"editor.insertSpaces": false
},
"workbench.colorTheme": "Dark (Molokai)"
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment