{
    "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"]
        }
    ]
}