Skip to content

Instantly share code, notes, and snippets.

@sauron
Last active May 5, 2021 21:15
Show Gist options
  • Save sauron/1957eb6640b0e5562da6618b406d2098 to your computer and use it in GitHub Desktop.
Save sauron/1957eb6640b0e5562da6618b406d2098 to your computer and use it in GitHub Desktop.
VS Code Settings. Dark Mode. Big Fonts. No panels. Focus Mode.
{
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"editor.formatOnPaste": false,
"editor.renderWhitespace": "all",
"editor.scrollBeyondLastLine": false,
"files.insertFinalNewline": true,
"editor.find.seedSearchStringFromSelection": true,
"editor.fontSize": 15,
"editor.tabSize": 4,
"editor.wordWrap": "on",
"window.newWindowDimensions": "maximized",
"vetur.completion.useScaffoldSnippets": false,
"vetur.validation.template": false,
"eslint.validate": [
{
"language": "vue",
"autoFix": true
},
{
"language": "html",
"autoFix": true
},
{
"language": "javascript",
"autoFix": true
}
],
"eslint.autoFixOnSave": false,
"editor.formatOnSave": false,
"vetur.format.enable": false,
"vetur.format.defaultFormatter.js": "none",
"vetur.format.defaultFormatter.ts": "none",
"javascript.format.insertSpaceBeforeFunctionParenthesis": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
/* Cleanning up the view */
"workbench.activityBar.visible": false,
"editor.minimap.enabled": false,
"workbench.statusBar.visible": false,
"workbench.editor.showTabs": false,
"workbench.sideBar.location": "right",
"workbench.iconTheme": null,
/* Terminal customization */
"terminal.integrated.fontSize": 13,
"editor.fontFamily": "Monaco, Menlo, 'Courier New', monospace",
"editor.fontLigatures": null,
"files.trimTrailingWhitespace": true,
"workbench.colorTheme": "Eva Light Bold",
"workbench.preferredLightColorTheme": "Eva Light Bold",
"workbench.preferredDarkColorTheme": "Palenight Operator",
"window.autoDetectColorScheme": true,
"php-cs-fixer.executablePath": "${extensionPath}/php-cs-fixer.phar",
"php-cs-fixer.lastDownload": 1619448764145,
"php-cs-fixer.onsave": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment