Skip to content

Instantly share code, notes, and snippets.

@night-fury-rider
night-fury-rider / vscode-mac-keybindings.json
Last active May 13, 2025 02:53
Visual Studio Code - Mac - Keyboard Shortcuts Customization.
// Update `~/Library/Application Support/Code/User/keybindings.json` file for keyboard shortcuts
[
{
"key": "shift+cmd+f",
"command": "editor.action.formatSelection",
"when": "editorHasDocumentSelectionFormattingProvider && editorTextFocus && !editorReadonly"
},
{
"key": "cmd+k cmd+f",
"command": "-editor.action.formatSelection",
@night-fury-rider
night-fury-rider / vscode-settings.json
Last active May 13, 2025 02:53
Visual Studio Code - Settings
{
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"diffEditor.ignoreTrimWhitespace": false,