how-to-use/cpp/vscode/settings.json
2024-09-11 21:35:14 +08:00

43 lines
1.0 KiB
JSON

{
"cmake.showOptionsMovedNotification": false,
"cmake.pinnedCommands": [
"workbench.action.tasks.configureTaskRunner",
"workbench.action.tasks.runTask"
],
"editor.lineNumbers": "relative",
"vim.leader": "<space>",
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": true,
"vim.normalModeKeyBindings": [
{
"before": [
"<leader>",
"g",
"c"
],
"commands": ["workbench.action.showCommands"],
},
{
"before": [
"<leader>",
"c",
"f"
],
"commands": ["editor.action.formatDocument"]
},
{
"before": [
"<leader>",
"j",
],
"commands": ["workbench.action.togglePanel"]
},
{
"before": [
"g",
"d"
],
"commands": ["editor.action.revealDefinition"]
}
]
}