docs: Fix indentation of JSON example lsp settings (#22162)

Peter Tripp created

Change summary

docs/src/languages/json.md | 19 ++++++++++---------
1 file changed, 10 insertions(+), 9 deletions(-)

Detailed changes

docs/src/languages/json.md 🔗

@@ -55,15 +55,16 @@ To
 
 ```json
 "lsp": {
-"json-language-server": {
-  "settings": {
-    "json": {
-      "schemas": [
-        {
-          "fileMatch": ["*/*.luarc.json"],
-          "url": "https://raw.githubusercontent.com/sumneko/vscode-lua/master/setting/schema.json"
-        }
-      ]
+  "json-language-server": {
+    "settings": {
+      "json": {
+        "schemas": [
+          {
+            "fileMatch": ["*/*.luarc.json"],
+            "url": "https://raw.githubusercontent.com/sumneko/vscode-lua/master/setting/schema.json"
+          }
+        ]
+      }
     }
   }
 }