diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 3c055ce..45ef4c9 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -4,6 +4,7 @@ "oderwat.indent-rainbow", "streetsidesoftware.code-spell-checker", + "ms-vscode-remote.remote-ssh-edit", "yzhang.markdown-all-in-one", "ms-python.python", diff --git a/knowledge base/visual studio code.md b/knowledge base/visual studio code.md index 64dbd69..6e9556c 100644 --- a/knowledge base/visual studio code.md +++ b/knowledge base/visual studio code.md @@ -63,16 +63,21 @@ Add the `extensions.json` file to the workspace's `.vscode` folder with the foll ```json { "recommendations": [ - "casualjim.gotemplate", "editorconfig.editorconfig", - "golang.go", - "ms-python.python", "nhoizey.gremlins", "oderwat.indent-rainbow", - "redhat.ansible", - "redhat.vscode-yaml", "streetsidesoftware.code-spell-checker", + + "ms-vscode-remote.remote-ssh-edit", + "redhat.vscode-yaml", "yzhang.markdown-all-in-one", + + "casualjim.gotemplate", + "golang.go", + + "ms-python.python", + + "redhat.ansible", ] } ``` @@ -133,6 +138,7 @@ The `recommendations[]` key shall contain the recommended extensions' identifier "fileMatch": ["/.pre-commit-config.yaml"], "url": "https://json.schemastore.org/pre-commit-config.json" }, + ] } ```