Skip to content

Instantly share code, notes, and snippets.

@lomeat
Created November 9, 2020 18:34
Show Gist options
  • Save lomeat/fb6c45e0625044fe3d590bbc15b2813c to your computer and use it in GitHub Desktop.
Save lomeat/fb6c45e0625044fe3d590bbc15b2813c to your computer and use it in GitHub Desktop.
vs code settings
{
"editor.snippetSuggestions": "top",
"window.zoomLevel": 0,
"editor.lineHeight": 24,
"editor.fontSize": 13,
"editor.fontFamily": "fira code medium",
"editor.tabSize": 2,
"emmet.triggerExpansionOnTab": true,
"emmet.syntaxProfiles": {
"javascript": "html"
},
"javascript.implicitProjectConfig.experimentalDecorators": true,
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"editor.minimap.enabled": true,
"editor.cursorStyle": "underline",
"editor.mouseWheelZoom": false,
"editor.renderLineHighlight": "gutter",
"workbench.startupEditor": "newUntitledFile",
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"explorer.confirmDelete": false,
"extensions.ignoreRecommendations": true,
"workbench.iconTheme": "vscode-icons",
"editor.fontLigatures": true,
"update.mode": "manual",
"editor.fontWeight": "500",
"terminal.explorerKind": "external",
"terminal.external.windowsExec": "C:\\\\Program Files\\\\Git\\\\bin\\\\bash.exe",
"vsicons.dontShowNewVersionMessage": true,
"explorer.confirmDragAndDrop": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"liveSassCompile.settings.formats": [
{
"format": "expanded",
"extensionName": ".css",
"savePath": "/dist/css/"
}
],
"liveServer.settings.donotShowInfoMsg": true,
"git.enableSmartCommit": true,
"git.confirmSync": false,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.codeActionsOnSave": {
"source.fixAll": true
},
"workbench.enableExperiments": false,
"sync.autoUpload": true,
"sync.gist": "def348a78002528667c491114a4fe51d",
"git.autofetch": true,
"svelte.language-server.runtime": "C:\\Program Files\\nodejs\\node.exe",
"diffEditor.renderSideBySide": false,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"prettier.javascriptEnable": ["javascript", "javascript", "javascriptreact"],
"prettier.graphqlEnable": ["graphql", "graphql"],
"prettier.typescriptEnable": ["typescript", "typescript", "typescriptreact"],
"editor.autoClosingBrackets": "always",
"typescript.updateImportsOnFileMove.enabled": "always",
"editor.detectIndentation": false,
"editor.formatOnSave": true,
"workbench.colorTheme": "Egoist One"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment