Last active
October 27, 2017 08:20
-
-
Save tdchien/d587756692d5575de92ccf373a6bcd76 to your computer and use it in GitHub Desktop.
My setting for VSCode
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.fontSize": 14, | |
"editor.lineHeight": 23, | |
"editor.fontFamily": "'Droid Sans Mono', Consolas, monospace, 'Courier New'", | |
"files.eol": "\n", | |
// php-cs-fixer | |
"php-cs-fixer.executablePath": "php-cs-fixer", | |
"php-cs-fixer.executablePathWindows": "php-cs-fixer.bat", //eg: php-cs-fixer.bat | |
"php-cs-fixer.onsave": false, | |
"php-cs-fixer.rules": "@PSR2", | |
"php-cs-fixer.config": ".php_cs", | |
"php-cs-fixer.autoFixByBracket": true, | |
"php-cs-fixer.autoFixBySemicolon": false, | |
"php-cs-fixer.formatHtml": false, | |
"php-cs-fixer.documentFormattingProvider": true, | |
"php-cs-fixer.allowRisky": false, | |
// Terminal | |
"terminal.integrated.shell.windows": "D:\\Work\\laragon\\bin\\git\\bin\\bash.exe", | |
// php | |
"php.validate.executablePath": "d:\\Work\\laragon\\bin\\php\\php-7.1.7-Win32-VC14-x64\\php.exe", | |
"php.executablePath": "d:\\Work\\laragon\\bin\\php\\php-7.1.7-Win32-VC14-x64\\php.exe", | |
// "php.suggest.basic": false, | |
"phpcs.standard": "PSR2", | |
"editor.renderWhitespace": "all", | |
"editor.dragAndDrop": false, | |
"window.title": "${dirty}${activeEditorLong}${separator}${rootName}${separator}${appName}", | |
"window.menuBarVisibility": "default", | |
// Sublime page | |
"editor.minimap.enabled": true, | |
"editor.formatOnPaste": true, | |
"editor.snippetSuggestions": "top", | |
"auto-close-tag.SublimeText3Mode": true, | |
"auto-close-tag.activationOnLanguage": [ "*" ], | |
// Emmet | |
"emmet.includeLanguages": {"blade": "html"}, | |
"workbench.colorCustomizations": { | |
"activityBar.background": "#22232e", | |
"sideBar.background": "#333545", | |
"tab.inactiveBackground": "#282A36", | |
"tab.activeBackground": "#282A36", | |
"tab.activeBorder": "#CCC", | |
"editorIndentGuide.background": "#4e5068", | |
"editorWhitespace.foreground": "#606380" | |
}, | |
"workbench.iconTheme": "vscode-great-icons", | |
"editor.renderControlCharacters": true, | |
"workbench.colorTheme": "Agila Dracula", | |
"workbench.startupEditor": "newUntitledFile", | |
// Shell | |
"shellLauncher.shells.windows": [ | |
{ | |
"shell": "C:\\Windows\\system32\\cmd.exe", | |
"label": "cmd" | |
}, | |
{ | |
"shell": "C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\powershell.exe", | |
"label": "PowerShell" | |
}, | |
{ | |
"shell": "D:\\programs\\laragon\\bin\\git\\bin\\bash.exe", | |
"label": "Git bash" | |
}, | |
{ | |
"shell": "C:\\Windows\\sysnative\\bash.exe", | |
"label": "WSL Bash" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment