aboutsummaryrefslogtreecommitdiff
path: root/docs/cli_configuration.md
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2024-05-30 10:00:28 +0100
committerGitHub <noreply@github.com>2024-05-30 10:00:28 +0100
commitb39285807e1d21300e8a5dbbf6f2c43a8aab3494 (patch)
tree311895a73c967f5d322885c1a9f1073a7b9f1b91 /docs/cli_configuration.md
parent6ef97172889ccd5db376b2a9f8825489e24fdac4 (diff)
[docs] Fix code blocks overflowing page width (#23829)
Fix code blocks overflowing page width
Diffstat (limited to 'docs/cli_configuration.md')
-rw-r--r--docs/cli_configuration.md20
1 files changed, 15 insertions, 5 deletions
diff --git a/docs/cli_configuration.md b/docs/cli_configuration.md
index 50f5dc6e28..3d2260c20c 100644
--- a/docs/cli_configuration.md
+++ b/docs/cli_configuration.md
@@ -43,7 +43,9 @@ user.keymap: None -> default
The `qmk config` command is used to interact with the underlying configuration. When run with no argument it shows the current configuration. When arguments are supplied they are assumed to be configuration tokens, which are strings containing no spaces with the following form:
- <subcommand|general|default>[.<key>][=<value>]
+```
+<subcommand|general|default>[.<key>][=<value>]
+```
## Setting Configuration Values
@@ -63,19 +65,27 @@ You can read configuration values for the entire configuration, a single key, or
### Entire Configuration Example
- qmk config
+```
+qmk config
+```
### Whole Section Example
- qmk config compile
+```
+qmk config compile
+```
### Single Key Example
- qmk config compile.keyboard
+```
+qmk config compile.keyboard
+```
### Multiple Keys Example
- qmk config user compile.keyboard compile.keymap
+```
+qmk config user compile.keyboard compile.keymap
+```
## Deleting Configuration Values