Skip to content

Instantly share code, notes, and snippets.

@altaywtf
altaywtf / vscode-keybindings.json
Created September 18, 2024 16:55
vscode-keybindings.json
[
{
"key": "cmd+shift+j",
"command": "workbench.action.terminal.new",
"when": "terminalProcessSupported || terminalWebExtensionContributedProfile"
},
{
"key": "cmd+j",
"command": "workbench.action.terminal.toggleTerminal",
"when": "terminal.active"
@altaywtf
altaywtf / vscode-settings.json
Created September 18, 2024 16:43
vscode-settings.json
{
"diffEditor.ignoreTrimWhitespace": false,
"editor.accessibilitySupport": "off",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.fontFamily": "Berkeley Mono",
"editor.fontLigatures": true,
"editor.fontSize": 16,