Skip to content

Instantly share code, notes, and snippets.

@mohandere
Created August 20, 2019 15:12
Show Gist options
  • Save mohandere/a54980cf676278fc34d73b6355554957 to your computer and use it in GitHub Desktop.
Save mohandere/a54980cf676278fc34d73b6355554957 to your computer and use it in GitHub Desktop.
VS code editor 2019 settings mac os
// Place your settings in this file to overwrite the default settings
{
"editor.wordWrap": "on",
"editor.tabSize": 2,
"editor.mouseWheelZoom": false,
"guides.enabled": false,
"terminal.integrated.fontSize": 17,
"editor.fontSize": 20,
"window.zoomLevel": 0,
"sublimeTextKeymap.promptV3Features": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"editor.formatOnPaste": false,
"editor.showFoldingControls": "always",
"files.hotExit": "onExit",
"window.openFilesInNewWindow": "off",
"files.trimTrailingWhitespace": true,
"materialTheme.fixIconsRunning": false,
"explorer.confirmDelete": false,
"search.exclude": {
"**/bower_components": true,
"**/cache": true,
"**/node_modules": true
},
"javascript.updateImportsOnFileMove.enabled": "always",
"terminal.explorerKind": "external",
"editor.fontLigatures": true,
"editor.fontFamily": "Menlo, Inconsolata, 'Courier New', monospace",
"workbench.colorTheme": "Night Owl",
"explorer.confirmDragAndDrop": false,
"window.restoreWindows": "all",
"prettier.singleQuote": true,
"prettier.trailingComma": "es5",
"eslint.enable": false,
"editor.fontWeight": "300",
"workbench.fontAliasing": "antialiased",
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"dayNightThemeSwitcher.nightTheme": "Night Owl",
"workbench.colorCustomizations": {},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"flow.useNPMPackagedFlow": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment