Visual Studio Code - Settings
Updated at: 26/08/2020


file: keybindins.json

// Place your key bindings in this file to overwrite the defaults
[
{
"key": "ctrl+shift+c",
"command": "editor.action.commentLine",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+7",
"command": "-editor.action.commentLine",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+f4",
"command": "workbench.action.reopenClosedEditor"
},
{
"key": "ctrl+shift+t",
"command": "-workbench.action.reopenClosedEditor"
},
{
"key": "ctrl+shift+t",
"command": "workbench.action.terminal.openNativeConsole",
"when": "!terminalFocus"
},
{
"key": "ctrl+shift+c",
"command": "-workbench.action.terminal.openNativeConsole",
"when": "!terminalFocus"
},
{
"key": "ctrl+d",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+alt+down",
"command": "-editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+d",
"command": "editor.action.addSelectionToNextFindMatch",
"when": "editorFocus"
},
{
"key": "ctrl+d",
"command": "-editor.action.addSelectionToNextFindMatch",
"when": "editorFocus"
},
{
"key": "alt+left",
"command": "workbench.action.navigateBack"
},
{
"key": "ctrl+alt+-",
"command": "workbench.action.navigateBack"
},
{
"key": "alt+right",
"command": "workbench.action.navigateForward"
},
{
"key": "ctrl+shift+-",
"command": "workbench.action.navigateForward"
}
]


User Settings:

{
"[php]": {
"files.encoding": "utf8"
},
"workbench.colorTheme": "Default Light+",
"workbench.startupEditor": "newUntitledFile",
"html.format.enable": false,
"javascript.format.enable": false,
"explorer.openEditors.visible": 0, // Number of editors shown in the Open Editors pane.
"editor.wordSeparators": "`~!@#%^&*()-=+[{]}\\|;:'\",.<>/?",
"files.exclude": {
"**/*.pyc": true
},
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.minimap.enabled": false,
"workbench.editor.enablePreview": false,
"php.suggest.basic": false,
"php.validate.enable": false,
"php.validate.executablePath": null,
"intelephense.format.enable": false,
"intelephense.completion.fullyQualifyGlobalConstantsAndFunctions": false,
"intelephense.completion.insertUseDeclaration": false,
"intelephense.diagnostics.undefinedSymbols": false,
"intelephense.diagnostics.undefinedTypes": false,
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"explorer.confirmDelete": false,
"editor.suggestSelection": "first",
"workbench.iconTheme": "vscode-great-icons",
"window.zoomLevel": 0
}