'VSCode: add settings.json KVP to keybinding?

How do I add the following KVP:

    "files.associations": {
        "*.*": "plaintext",
    }

as a keybinding in VSCode? The following isn't valid JSON:

    {
        "key": "ctrl+c f",
        "command": "files.associations": {
            "*.*": "plaintext"
        }
    }

Thank you!



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source