Skip to content

Instantly share code, notes, and snippets.

@phlxz
Last active March 20, 2026 12:28
Show Gist options
  • Select an option

  • Save phlxz/e0c0c3049565cc3cfd9fea37006cd7d7 to your computer and use it in GitHub Desktop.

Select an option

Save phlxz/e0c0c3049565cc3cfd9fea37006cd7d7 to your computer and use it in GitHub Desktop.
vscode keybindings
[
{
"key": "alt+n",
"command": "toggle",
"when": "editorTextFocus",
"args": {
"id": "lineNumbers",
"value": [
{ "editor.lineNumbers": "on" },
{ "editor.lineNumbers": "relative" },
],
},
},
{
"key": "alt+l",
"command": "toggle",
"when": "editorTextFocus",
"args": {
"id": "fontLigatures",
"value": [
{ "editor.fontLigatures": false },
{ "editor.fontLigatures": true },
],
},
},
{
"key": "ctrl+.",
"command": "workbench.action.quickOpen",
},
{
"key": "ctrl+k ctrl+.",
"command": "workbench.action.showAllEditors",
},
{
"key": "ctrl+;",
"command": "workbench.action.showCommands",
},
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment