regular backup
This commit is contained in:
parent
5a1236922f
commit
99020d982a
|
@ -52,10 +52,6 @@
|
||||||
"before": [ "<leader>", "g" ],
|
"before": [ "<leader>", "g" ],
|
||||||
"commands": [ "livegrep.search" ]
|
"commands": [ "livegrep.search" ]
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"before": [ "<leader>", "c", "c" ],
|
|
||||||
"commands": [ "codesnap.start" ]
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"before": [ "<leader>", "d" ],
|
"before": [ "<leader>", "d" ],
|
||||||
"commands": [ "workbench.panel.markers.view.focus" ]
|
"commands": [ "workbench.panel.markers.view.focus" ]
|
||||||
|
@ -92,6 +88,14 @@
|
||||||
{
|
{
|
||||||
"before": [ "<leader>", "z" ],
|
"before": [ "<leader>", "z" ],
|
||||||
"commands": [ "workbench.action.toggleZenMode" ],
|
"commands": [ "workbench.action.toggleZenMode" ],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"before": [ "g", "d" ],
|
||||||
|
"commands": [ "editor.action.revealDefinition" ],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"before": [ "g", "p", "d" ],
|
||||||
|
"commands": [ "editor.action.peekDefinition" ],
|
||||||
}
|
}
|
||||||
|
|
||||||
],
|
],
|
||||||
|
@ -114,6 +118,26 @@
|
||||||
"before": [ "<S-Tab>" ],
|
"before": [ "<S-Tab>" ],
|
||||||
"after": [ "<", "g", "v" ]
|
"after": [ "<", "g", "v" ]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"before": [ "<C-n>" ],
|
||||||
|
"commands": [ "editor.action.addSelectionToNextFindMatch" ],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"before": [ "<C-x>" ],
|
||||||
|
"commands": [ "editor.action.moveSelectionToNextFindMatch" ],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"before": [ "<C-p>" ],
|
||||||
|
"commands": [ "editor.action.moveSelectionToPreviousFindMatch" ],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"before": [ "<C-a>" ],
|
||||||
|
"commands": [ "editor.action.selectHighlights" ],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"before": [ "<leader>", "c", "c" ],
|
||||||
|
"commands": [ "codesnap.start" ]
|
||||||
|
},
|
||||||
],
|
],
|
||||||
"editor.minimap.enabled": false,
|
"editor.minimap.enabled": false,
|
||||||
"vim.useSystemClipboard": true,
|
"vim.useSystemClipboard": true,
|
||||||
|
@ -153,4 +177,7 @@
|
||||||
"editorSuggestWidget.background": "#292522AA",
|
"editorSuggestWidget.background": "#292522AA",
|
||||||
"editorHoverWidget.background": "#292522AA",
|
"editorHoverWidget.background": "#292522AA",
|
||||||
},
|
},
|
||||||
|
"vim.showMarksInGutter": true,
|
||||||
|
"zenMode.hideLineNumbers": false,
|
||||||
|
"zenMode.hideStatusBar": false,
|
||||||
}
|
}
|
Loading…
Reference in New Issue