diff --git a/README.md b/README.md index 7c34277..d0f1ff0 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,17 @@ Order alphabetically and format `settings.json`: > **Note:** Unfortunately there is no in-place feature available a the moment ```sh -jq --sort-keys . settings.json > settings.json.new && mv settings.json.new settings.json +VSC_D="vscode/.config/Code/User/" sh -c '\ + jq --sort-keys . "${VSC_D}settings.json" > "${VSC_D}settings.json.new" && \ + mv "${VSC_D}settings.json.new" "${VSC_D}settings.json"' +``` + +Order alphabetically and format `argv.json`: + +```sh +VSC_D="vscode/.vscode/" sh -c '\ + jq --sort-keys . "${VSC_D}argv.json" > "${VSC_D}argv.json.new" && \ + mv "${VSC_D}argv.json.new" "${VSC_D}argv.json"' ``` ## Stow diff --git a/vscode/.config/Code/User/settings.json b/vscode/.config/Code/User/settings.json index dfa294f..a44a117 100644 --- a/vscode/.config/Code/User/settings.json +++ b/vscode/.config/Code/User/settings.json @@ -13,6 +13,7 @@ "python.languageServer": "Default", "redhat.telemetry.enabled": false, "rest-client.enableTelemetry": false, + "telemetry.telemetryLevel": "off", "terminal.integrated.fontFamily": "'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback','PowerlineSymbols'", "terminal.integrated.fontSize": 12, "update.mode": "manual", diff --git a/vscode/.vscode-oss b/vscode/.vscode-oss new file mode 120000 index 0000000..600d2d3 --- /dev/null +++ b/vscode/.vscode-oss @@ -0,0 +1 @@ +.vscode \ No newline at end of file diff --git a/vscode/.vscode/argv.json b/vscode/.vscode/argv.json new file mode 100644 index 0000000..062f2c7 --- /dev/null +++ b/vscode/.vscode/argv.json @@ -0,0 +1,6 @@ +{ + "crash-reporter-id": "", + "disable-color-correct-rendering": true, + "disable-hardware-acceleration": false, + "enable-crash-reporter": false +}