Last active
December 4, 2019 08:25
-
-
Save ayoubjamouhi/b5c4daf0ca2a5730b372107e8b2e30cc to your computer and use it in GitHub Desktop.
This file contains 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
{ | |
"workbench.colorTheme": "Cobalt2", | |
"editor.fontFamily": "Victor Mono", //i.e. add "Medium" | |
"editor.fontLigastures": true, | |
//"editor.fontWeight": "600", //To make it even bolder (Though optional) | |
"files.autoSave": "onFocusChange", | |
"editor.fontSize": 18, | |
"editor.cursorBlinking": "expand", | |
"explorer.openEditors.visible": 0, | |
"workbench.editor.enablePreview": false, | |
"editor.minimap.enabled": false, | |
"editor.renderIndentGuides": false, | |
"editor.tokenColorCustomizations": { | |
// "comments": "#8d8579" | |
}, | |
"editor.matchBrackets": false, | |
// Changes the multi cursor mouse binding | |
//"editor.multiCursorModifier": "ctrlCmd", | |
"files.associations": { | |
".php_cs": "php", | |
".php_cs.dist": "php" | |
}, | |
// The Cursive font is operator Mono, it's $200 and you need to buy it to get the cursive | |
"editor.lineHeight": 28, | |
"editor.letterSpacing": 0.6, | |
"files.trimTrailingWhitespace": true, | |
"editor.cursorStyle": "line", | |
"editor.cursorWidth": 5, | |
"editor.renderWhitespace": "all", | |
"editor.tabSize": 2, | |
"php.executablePath": "C:\\xampp\\php\\php.exe", | |
"php.validate.executablePath": "C:\\xampp\\php\\php.exe", | |
"php.validate.enable": true, | |
"php.validate.run": "onType", | |
"phpfmt.php_bin": "C:\\xampp\\php\\php.exe", | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact", | |
}, | |
"window.title": "${folderName}${separator}${activeEditorMedium}", | |
"workbench.iconTheme": "material-icon-theme", | |
"dart.flutterSdkPath": "/home/jfnadev/development/flutter", | |
"diffEditor.ignoreTrimWhitespace": false, | |
/*"files.associations": { | |
"*.js": "javascriptreact" | |
}*/ | |
// These are all my auto-save configs | |
"editor.formatOnSave": true, | |
// turn it off for JS and JSX, we will do this via eslint | |
"[javascript]": { | |
"editor.formatOnSave": false | |
}, | |
"[javascriptreact]": { | |
"editor.formatOnSave": false | |
}, | |
// tell the ESLint plugin to run on save | |
"eslint.autoFixOnSave": true, | |
// Optional BUT IMPORTANT: If you have the prettier extension enabled for other languages like CSS and HTML, turn it off for JS since we are doing it through Eslint already | |
"prettier.disableLanguages": [ | |
"javascriptreact" | |
], | |
"editor.maxTokenizationLineLength": 40000, | |
"editor.formatOnSaveTimeout": 5000, | |
"php-cs-fixer.executablePath": "${extensionPath}/php-cs-fixer.phar", | |
"php-cs-fixer.lastDownload": 1570459292207, | |
"terminal.integrated.rendererType": "dom", | |
"window.zoomLevel": 0, | |
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment