Skip to content

Instantly share code, notes, and snippets.

{
"workbench.colorTheme": "Oceanic Next",
"workbench.iconTheme": "material-icon-theme",
"terminal.integrated.defaultProfile.windows": "Git Bash",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"eslint.probe": ["javascript", "javascriptreact"],
"editor.formatOnSave": false,
// Runs ESLint, then Prettier
"editor.codeActionsOnSave": ["source.fixAll.eslint", "source.formatDocument"],
@CodeNameGrant
CodeNameGrant / vscode-key-bindings.json
Created November 9, 2021 19:29
vscode-key-bindings
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "ctrl+shift+/",
"command": "editor.action.blockComment",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+'",
"command": "workbench.action.terminal.toggleTerminal",