From 223551530018c749f684bbfbf633711f433b80fe Mon Sep 17 00:00:00 2001
From: Piotr Spieker
Date: Tue, 26 Nov 2024 18:39:13 +0100
Subject: [PATCH] Move VSCode settings from devcontainer customization section
to settings.json
---
demo/.devcontainer/devcontainer.json | 15 +--------------
demo/.vscode/settings.json | 13 +++++++++++++
2 files changed, 14 insertions(+), 14 deletions(-)
create mode 100644 demo/.vscode/settings.json
diff --git a/demo/.devcontainer/devcontainer.json b/demo/.devcontainer/devcontainer.json
index d83ac6f0..fdab3471 100644
--- a/demo/.devcontainer/devcontainer.json
+++ b/demo/.devcontainer/devcontainer.json
@@ -25,20 +25,7 @@
"vadimcn.vscode-lldb",
"matepek.vscode-catch2-test-adapter",
"twxs.cmake"
- ],
- "settings": {
- // Use zsh as default terminal
- "terminal.integrated.profiles.linux": {
- "zsh": {
- "path": "/bin/zsh",
- "args": ["-l", "-i"]
- }
- },
- "terminal.integrated.defaultProfile.linux": "zsh",
-
- // Use system installation of clangd
- "clangd.path": "clangd"
- }
+ ]
}
}
}
diff --git a/demo/.vscode/settings.json b/demo/.vscode/settings.json
new file mode 100644
index 00000000..9dfc6f2d
--- /dev/null
+++ b/demo/.vscode/settings.json
@@ -0,0 +1,13 @@
+{
+ // Use zsh as default terminal
+ "terminal.integrated.profiles.linux": {
+ "zsh": {
+ "path": "/bin/zsh",
+ "args": ["-l", "-i"]
+ }
+ },
+ "terminal.integrated.defaultProfile.linux": "zsh",
+
+ // Use system installation of clangd
+ "clangd.path": "clangd",
+}
\ No newline at end of file