Skip to content

Instantly share code, notes, and snippets.

@ctudorache87
Created July 25, 2019 07:24
Show Gist options
  • Save ctudorache87/b1cdcad8eb6961fdecf78637acae1709 to your computer and use it in GitHub Desktop.
Save ctudorache87/b1cdcad8eb6961fdecf78637acae1709 to your computer and use it in GitHub Desktop.
VSCode settings
{
"editor.fontFamily": "'Fira Code', 'Hasklig', Consolas",
"editor.fontLigatures": true,
"editor.minimap.enabled": false,
"editor.rulers": [
120
],
"editor.cursorBlinking": "smooth",
"editor.cursorSmoothCaretAnimation": true,
"editor.renderIndentGuides": true,
"editor.suggestSelection": "first",
"terminal.integrated.fontFamily": "'Fira Code', 'Hasklig', Consolas",
"terminal.integrated.fontSize": 13,
"terminal.integrated.lineHeight": 1.1,
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\wsl.exe",
"telemetry.enableTelemetry": false,
"workbench.colorTheme": "Darcula Extra",
"workbench.iconTheme": "seti",
"workbench.editor.highlightModifiedTabs": true,
"workbench.startupEditor": "newUntitledFile",
"workbench.colorCustomizations": {
"statusBar.background": "#474b4d",
"statusBar.noFolderBackground": "#212121",
"statusBar.debuggingBackground": "#263238"
},
"breadcrumbs.enabled": false,
"git.enableSmartCommit": true,
"php.validate.executablePath": "/usr/bin/php",
"javascript.updateImportsOnFileMove.enabled": "always",
"[javascript]": {
"editor.tabSize": 2,
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[json]": {
"editor.tabSize": 2
},
"prettier.jsxBracketSameLine": true,
"prettier.printWidth": 120,
"prettier.semi": true,
"prettier.singleQuote": true,
"prettier.trailingComma": "es5",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment