Skip to content

Instantly share code, notes, and snippets.

@dimitrinicolas
Created February 28, 2020 12:34
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 dimitrinicolas/444044e949cba5466e7681688aa5e0e7 to your computer and use it in GitHub Desktop.
Save dimitrinicolas/444044e949cba5466e7681688aa5e0e7 to your computer and use it in GitHub Desktop.
VS Code Settings
2gua.rainbow-brackets
bierner.markdown-preview-github-styles
bpruitt-goddard.mermaid-markdown-syntax-highlighting
bungcip.better-toml
christian-kohler.npm-intellisense
chrmarti.regex
cssho.vscode-svgviewer
DavidAnson.vscode-markdownlint
dbaeumer.vscode-eslint
dimitrinicolas.landmannalaugar
eamodio.gitlens
esbenp.prettier-vscode
foxundermoon.shell-format
geeklearningio.graphviz-markdown-preview
GrapeCity.gc-excelviewer
herrmannplatz.npm-dependency-links
HookyQR.JSDocTagComplete
joaompinto.vscode-graphviz
jock.svg
joelday.docthis
jpoissonnier.vscode-styled-components
kisstkondoros.csstriggers
kumar-harsh.graphql-for-vscode
le0zh.vscode-regexp-preivew
markis.code-coverage
mechatroner.rainbow-csv
mgmcdermott.vscode-language-babel
mikestead.dotenv
ms-vscode.cpptools
ms-vscode.vscode-typescript-next
ms-vscode.vscode-typescript-tslint-plugin
myax.short-js-doc
naumovs.color-highlight
oderwat.indent-rainbow
paulhoughton.vscode-jscpd
Prisma.vscode-graphql
RandomFractalsInc.vscode-data-preview
ryanluker.vscode-coverage-gutters
searKing.preview-vscode
Shan.code-settings-sync
stylelint.vscode-stylelint
TabNine.tabnine-vscode
tomoki1207.pdf
vincaslt.highlight-matching-tag
vsciot-vscode.vscode-arduino
vstirbu.vscode-mermaid-preview
wayou.vscode-todo-highlight
yzhang.markdown-all-in-one
Zignd.html-css-class-completion
{
"workbench.colorTheme": "Landmannalaugar",
"window.zoomLevel": 0.4,
"editor.fontSize": 13,
"editor.tabSize": 2,
"editor.detectIndentation": false,
"editor.renderWhitespace": "all",
"editor.wordWrap": "on",
"editor.rulers": [
80
],
"editor.accessibilitySupport": "off",
"editor.minimap.enabled": false,
"editor.largeFileOptimizations": false,
"editor.acceptSuggestionOnEnter": "off",
"explorer.compactFolders": false,
"terminal.integrated.fontSize": 12,
"terminal.integrated.rendererType": "dom",
"breadcrumbs.enabled": true,
"gitlens.currentLine.enabled": false,
"gitlens.codeLens.authors.enabled": false,
"gitlens.codeLens.recentChange.enabled": false,
"css.validate": true,
"less.validate": true,
"scss.validate": true,
"prettier.singleQuote": true,
"files.associations": {
"*.css": "scss",
"*.js": "javascriptreact",
"*.jsx": "javascriptreact"
},
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.stylelint": false,
},
"tslint.jsEnable": false,
"javascript.implicitProjectConfig.checkJs": true,
"javascript.implicitProjectConfig.experimentalDecorators": true,
"javascript.updateImportsOnFileMove.enabled": "never",
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"html.autoClosingTags": false,
"html.format.enable": false,
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"stylelint.enable": true,
"[scss]": {
"editor.formatOnSave": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": false,
"source.fixAll.stylelint": true,
},
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[markdown]": {
"editor.formatOnSave": false
},
"[dotenv]": {
"editor.formatOnSave": false
},
"[cpp]": {
"editor.defaultFormatter": "ms-vscode.cpptools"
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment