Skip to content

Instantly share code, notes, and snippets.

View DairoCantillo's full-sized avatar
💻

DairoCantillo

💻
View GitHub Profile
@DairoCantillo
DairoCantillo / lauch.json
Last active January 23, 2023 15:51
config debug
{
"version": "1.0.0",
"configurations": [
{
"name": "Start App",
"runtimeArgs": ["start"],
"env": {
"BROWSER": "none"
},
@DairoCantillo
DairoCantillo / keybindings.json
Created January 19, 2023 14:48
Default Keybindings vscode linux
// Override key bindings by placing them into your key bindings file.
[
{ "key": "escape escape", "command": "workbench.action.exitZenMode",
"when": "inZenMode" },
{ "key": "shift+escape", "command": "closeReferenceSearch",
"when": "inReferenceSearchEditor && !config.editor.stablePeek" },
{ "key": "escape", "command": "closeReferenceSearch",
"when": "inReferenceSearchEditor && !config.editor.stablePeek" },
{ "key": "escape", "command": "editor.closeTestPeek",
"when": "testing.isInPeek && !config.editor.stablePeek || testing.isPeekVisible && !config.editor.stablePeek" },