VSCode's Settings - Syncing
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
[ | |
{ | |
"id": "annsk.alignment", | |
"name": "alignment", | |
"publisher": "annsk", | |
"version": "0.3.0" | |
}, | |
{ | |
"id": "bmewburn.vscode-intelephense-client", | |
"name": "vscode-intelephense-client", | |
"publisher": "bmewburn", | |
"version": "1.7.1" | |
}, | |
{ | |
"id": "DigitalBrainstem.javascript-ejs-support", | |
"name": "javascript-ejs-support", | |
"publisher": "DigitalBrainstem", | |
"version": "1.3.1" | |
}, | |
{ | |
"id": "dracula-theme.theme-dracula", | |
"name": "theme-dracula", | |
"publisher": "dracula-theme", | |
"version": "2.22.3" | |
}, | |
{ | |
"id": "felixfbecker.php-debug", | |
"name": "php-debug", | |
"publisher": "felixfbecker", | |
"version": "1.15.1" | |
}, | |
{ | |
"id": "felixfbecker.php-intellisense", | |
"name": "php-intellisense", | |
"publisher": "felixfbecker", | |
"version": "2.3.14" | |
}, | |
{ | |
"id": "felixfbecker.php-pack", | |
"name": "php-pack", | |
"publisher": "felixfbecker", | |
"version": "1.0.2" | |
}, | |
{ | |
"id": "formulahendry.auto-close-tag", | |
"name": "auto-close-tag", | |
"publisher": "formulahendry", | |
"version": "0.5.10" | |
}, | |
{ | |
"id": "johnbillion.vscode-wordpress-hooks", | |
"name": "vscode-wordpress-hooks", | |
"publisher": "johnbillion", | |
"version": "0.5.4" | |
}, | |
{ | |
"id": "neilbrayfield.php-docblocker", | |
"name": "php-docblocker", | |
"publisher": "neilbrayfield", | |
"version": "2.1.0" | |
}, | |
{ | |
"id": "nonoroazoro.syncing", | |
"name": "syncing", | |
"publisher": "nonoroazoro", | |
"version": "3.1.0" | |
}, | |
{ | |
"id": "persoderlind.vscode-phpcbf", | |
"name": "vscode-phpcbf", | |
"publisher": "persoderlind", | |
"version": "0.0.8" | |
}, | |
{ | |
"id": "rifi2k.format-html-in-php", | |
"name": "format-html-in-php", | |
"publisher": "rifi2k", | |
"version": "1.7.0" | |
}, | |
{ | |
"id": "tungvn.wordpress-snippet", | |
"name": "wordpress-snippet", | |
"publisher": "tungvn", | |
"version": "1.1.5" | |
}, | |
{ | |
"id": "vscode-icons-team.vscode-icons", | |
"name": "vscode-icons", | |
"publisher": "vscode-icons-team", | |
"version": "11.4.0" | |
} | |
] |
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
// Place your key bindings in this file to overwrite the defaults | |
[ | |
{ | |
"key": "ctrl+q", | |
"command": "runInTerminal.run", | |
"args": { | |
"cmd": "phpcs -s -v -n --extensions=php ${file}", | |
"match": ".*" | |
}, | |
"when": "resourceLangId == php" | |
}, | |
{ | |
"key": "ctrl+w", | |
"command": "runInTerminal.run", | |
"args": { | |
"cmd": "phpcbf --standard=WordPress --extensions=php ${file}", | |
"match": ".*" | |
}, | |
"when": "resourceLangId == php" | |
}, | |
{ | |
"key": "cmd+r", | |
"command": "editor.action.formatDocument", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "shift+alt+f", | |
"command": "-editor.action.formatDocument", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "shift+cmd+d", | |
"command": "-workbench.view.debug" | |
}, | |
{ | |
"key": "cmd+d", | |
"command": "editor.action.copyLinesDownAction", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+shift+up", | |
"command": "editor.action.moveLinesUpAction", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+shift+down", | |
"command": "editor.action.moveLinesDownAction", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+s", | |
"command": "alignment.align", | |
"when": "editorHasSelection" | |
}, | |
{ | |
"key": "cmd+k cmd+/", | |
"command": "-editor.foldAllBlockComments", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+g", | |
"command": "workbench.action.gotoLine" | |
}, | |
{ | |
"key": "cmd+l", | |
"command": "workbench.action.gotoLine" | |
}, | |
{ | |
"key": "ctrl+w", | |
"command": "-workbench.action.switchWindow" | |
}, | |
{ | |
"key": "ctrl+q", | |
"command": "-workbench.action.quickOpenView" | |
}, | |
{ | |
"key": "ctrl+shift+u", | |
"command": "editor.action.transformToUppercase", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+shift+l", | |
"command": "editor.action.transformToLowercase", | |
"when": "editorTextFocus" | |
} | |
] |
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
{ | |
"editor.minimap.enabled": true, | |
"php.executablePath": "/usr/bin/php", | |
"phpcs.enable": true, | |
"phpcs.executablePath": "/usr/local/bin/phpcs", | |
"phpcs.standard": "WordPress", | |
"phpcbf.enable": true, | |
"phpcs.autoConfigSearch": false, | |
"phpcbf.executablePath": "/usr/local/bin/phpcbf", | |
"phpcbf.documentFormattingProvider": true, | |
"phpcs.showSources": true, | |
"phpcs.showWarnings": true, | |
"phpcbf.standard": "WordPress", | |
"editor.fontSize": 14, | |
"terminal.integrated.lineHeight": 1.4, | |
"workbench.colorTheme": "Dracula Soft", | |
"breadcrumbs.enabled": true, | |
"editor.tabSize": 4, | |
"editor.insertSpaces": false, | |
"editor.detectIndentation": true, | |
"editor.tabCompletion": "on", | |
"prettier.tabWidth": 4, | |
"prettier.useTabs": false, | |
"editor.wordWrapColumn": 500, | |
"editor.lineHeight": 28, | |
"editor.wordWrap": "off", | |
"[json]": { | |
"editor.tabSize": 4, | |
"editor.wordWrapColumn": 500, | |
"editor.wordWrap": "off", | |
"editor.defaultFormatter": "vscode.json-language-features", | |
}, | |
"phpfmt.php_bin": "/usr/bin/php", | |
"phpfmt.yoda": true, | |
"workbench.iconTheme": "vscode-icons", | |
"material-icon-theme.folders.theme": "specific", | |
"material-icon-theme.activeIconPack": "react_redux", | |
"material-icon-theme.folders.color": "#90a4ae", | |
/* Whether to highlight the indent of the block enclosing the current line */ | |
"indenticator.showHighlight": true, | |
/* Color of the indent marker for dark themes */ | |
"indenticator.color.dark": "#559619", | |
/* Color of the indent marker for light themes */ | |
"indenticator.color.light": "#559619", | |
/* Width of the indent marker in pixels */ | |
"indenticator.width": 1, | |
/* Line style of the indent marker (e.g. "inset", "dashed", "dotted", ...) */ | |
"indenticator.style": "solid", | |
"easycompile.compile": {}, | |
"editor.renderControlCharacters": false, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.wordWrapColumn": 500, | |
"editor.wordWrap": "off", | |
}, | |
"[php]": { | |
"editor.defaultFormatter": "persoderlind.vscode-phpcbf", | |
"phpcbf.onsave": true, | |
"phpcbf.debug": true, | |
}, | |
"[css]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"html.format.wrapLineLength": 0, | |
"editor.minimap.maxColumn": 400, | |
"[html]": { | |
"editor.defaultFormatter": "vscode.html-language-features" | |
}, | |
"[jsonc]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"workbench.colorCustomizations": { | |
"editor.selectionForeground": "#856404", //Color of the selected text for high contrast. | |
"editor.selectionBackground": "#fff3cd", //Currently SELECTED text | |
"editor.selectionHighlightBorder": "#ffeeba", //Currently SELECTED text | |
"editor.selectionHighlightBackground": "#e2e3e5", //Same content as selection | |
"editor.findMatchBackground": "#93a04b15", //Current SEARCH MATCH | |
"editor.findMatchHighlightBackground": "#ff7b00a1" //Other SEARCH MATCHES | |
}, | |
"[python]": { | |
"editor.defaultFormatter": "ms-python.python" | |
}, | |
"editor.useTabStops": false, | |
"[scss]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"sftp.debug": true, | |
"git.autofetch": true, | |
"javascript.updateImportsOnFileMove.enabled": "always" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment