Last active
May 5, 2021 21:15
-
-
Save sauron/1957eb6640b0e5562da6618b406d2098 to your computer and use it in GitHub Desktop.
VS Code Settings. Dark Mode. Big Fonts. No panels. Focus Mode.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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