Last active
July 9, 2020 11:38
-
-
Save johnregan3/97abff972f72ac298a2bfe08d275104e to your computer and use it in GitHub Desktop.
VSCode settings
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
{"lastUpload":"2020-07-09T11:37:59.707Z","extensionVersion":"v3.4.3"} |
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
[ | |
{ | |
"metadata": { | |
"id": "5a6e2b21-1d61-4acd-b31b-907f9c23f18a", | |
"publisherId": "CoenraadS.bracket-pair-colorizer-2", | |
"publisherDisplayName": "CoenraadS" | |
}, | |
"name": "bracket-pair-colorizer-2", | |
"publisher": "CoenraadS", | |
"version": "0.2.0" | |
}, | |
{ | |
"metadata": { | |
"id": "e337c67b-55c2-4fef-8949-eb260e7fb7fd", | |
"publisherId": "Shan.code-settings-sync", | |
"publisherDisplayName": "Shan" | |
}, | |
"name": "code-settings-sync", | |
"publisher": "Shan", | |
"version": "3.4.3" | |
}, | |
{ | |
"metadata": { | |
"id": "65fca382-b0d0-438c-894a-ea55e4fda477", | |
"publisherId": "dnlytras.nord-wave", | |
"publisherDisplayName": "dnlytras" | |
}, | |
"name": "nord-wave", | |
"publisher": "dnlytras", | |
"version": "0.3.4" | |
}, | |
{ | |
"metadata": { | |
"id": "044b4b31-2969-4af3-895d-855433b8b46d", | |
"publisherId": "felixfbecker.php-debug", | |
"publisherDisplayName": "felixfbecker" | |
}, | |
"name": "php-debug", | |
"publisher": "felixfbecker", | |
"version": "1.13.0" | |
}, | |
{ | |
"metadata": { | |
"id": "7ec14729-6395-434d-bcf5-6d61b5e3ca8e", | |
"publisherId": "wongjn.php-sniffer", | |
"publisherDisplayName": "wongjn" | |
}, | |
"name": "php-sniffer", | |
"publisher": "wongjn", | |
"version": "1.2.6" | |
}, | |
{ | |
"metadata": { | |
"id": "583b2b34-2c1e-4634-8c0b-0b82e283ea3a", | |
"publisherId": "dbaeumer.vscode-eslint", | |
"publisherDisplayName": "dbaeumer" | |
}, | |
"name": "vscode-eslint", | |
"publisher": "dbaeumer", | |
"version": "2.1.6" | |
}, | |
{ | |
"metadata": { | |
"id": "01708053-6fab-403f-9787-9d5f3d8f7d6a", | |
"publisherId": "sibiraj-s.vscode-scss-formatter", | |
"publisherDisplayName": "sibiraj-s" | |
}, | |
"name": "vscode-scss-formatter", | |
"publisher": "sibiraj-s", | |
"version": "2.0.1" | |
} | |
] |
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
// Place your key bindings in this file to override the defaultsauto[] | |
[ | |
{ | |
"key": "cmd+m", | |
"command": "editor.action.addSelectionToNextFindMatch", | |
"when": "editorFocus" | |
}, | |
{ | |
"key": "cmd+d", | |
"command": "-editor.action.addSelectionToNextFindMatch", | |
"when": "editorFocus" | |
}, | |
{ | |
"key": "cmd+d", | |
"command": "editor.action.copyLinesDownAction", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "shift+alt+down", | |
"command": "-editor.action.copyLinesDownAction", | |
"when": "editorTextFocus && !editorReadonly" | |
} | |
] |
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
{ | |
"bracket-pair-colorizer-2.colors": [ | |
"#CC7832", | |
"#BBB529", | |
"#629755", | |
"#9876AA", | |
], | |
"bracket-pair-colorizer-2.showHorizontalScopeLine": false, | |
"explorer.confirmDelete": false, | |
"editor.formatOnSave": true, | |
"[javascript]": { | |
"editor.formatOnSave": false | |
}, | |
"[scss]": { | |
"editor.formatOnSave": true, | |
}, | |
"editor.renderWhitespace": "boundary", | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [ | |
{ | |
"scope": "punctuation.section.embedded.begin.php, punctuation.section.embedded.end.php, punctuation.terminator.expression.php, punctuation.separator.delimiter.php", | |
"settings": { | |
"foreground": "#d08770" | |
} | |
}, | |
{ | |
"scope": "keyword.other.phpdoc.php", | |
"settings": { | |
"foreground": "#a3be8c" | |
}, | |
} | |
] | |
}, | |
"eslint.enable": true, | |
"eslint.alwaysShowStatus": true, | |
"eslint.autoFixOnSave": true, | |
"files.associations": { | |
"*.php": "php" | |
}, | |
"files.trimTrailingWhitespace": true, | |
"phpcs.enable": true, | |
"phpcs.executablePath": "/Users/johnregan/.composer/vendor/bin/phpcs", | |
"phpcs.standard": "WordPress-Core", | |
"phpcbf.documentFormattingProvider": true, | |
"phpcbf.enable": true, | |
"phpcbf.executablePath": "/Users/johnregan/.composer/vendor/bin/phpcbf", | |
"phpcbf.onsave": true, | |
"phpcbf.standard": "WordPress-Core", | |
"workbench.editor.closeOnFileDelete": true, | |
"workbench.iconTheme": "vs-minimal", | |
"workbench.list.openMode": "doubleClick", | |
"window.zoomLevel": 0, | |
"workbench.view.alwaysShowHeaderActions": true, | |
"workbench.useExperimentalGridLayout": true, | |
"workbench.statusBar.feedback.visible": false, | |
"terminal.integrated.fontSize": 13, | |
"workbench.startupEditor": "newUntitledFile", | |
"editor.autoClosingBrackets": "never", | |
"editor.autoClosingQuotes": "never", | |
"editor.copyWithSyntaxHighlighting": false, | |
"editor.selectionHighlight": false, | |
"workbench.editor.highlightModifiedTabs": true, | |
"editor.fontSize": 14, | |
"editor.formatOnSaveTimeout": 5000, | |
"php-cs-fixer.executablePath": "${extensionPath}/php-cs-fixer.phar", | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true | |
}, | |
"editor.insertSpaces": false, | |
"workbench.colorTheme": "Nord Wave", | |
"php-cs-fixer.lastDownload": 1581960756185, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"sync.gist": "97abff972f72ac298a2bfe08d275104e", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment