regular backup

This commit is contained in:
arielherself 2024-12-16 02:46:12 +08:00
parent 5a1236922f
commit 99020d982a
Signed by: arielherself
SSH Key Fingerprint: SHA256:AK3cyo9tFsp7Mox7K0sYphleC8hReXhnRKxwuDT5LBc
1 changed files with 31 additions and 4 deletions

View File

@ -52,10 +52,6 @@
"before": [ "<leader>", "g" ],
"commands": [ "livegrep.search" ]
},
{
"before": [ "<leader>", "c", "c" ],
"commands": [ "codesnap.start" ]
},
{
"before": [ "<leader>", "d" ],
"commands": [ "workbench.panel.markers.view.focus" ]
@ -92,6 +88,14 @@
{
"before": [ "<leader>", "z" ],
"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>" ],
"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,
"vim.useSystemClipboard": true,
@ -153,4 +177,7 @@
"editorSuggestWidget.background": "#292522AA",
"editorHoverWidget.background": "#292522AA",
},
"vim.showMarksInGutter": true,
"zenMode.hideLineNumbers": false,
"zenMode.hideStatusBar": false,
}