Skip to content

Commit

Permalink
Move VSCode settings from devcontainer customization section to setti…
Browse files Browse the repository at this point in the history
…ngs.json
  • Loading branch information
orzechow committed Nov 26, 2024
1 parent 6e1a942 commit 2235515
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
15 changes: 1 addition & 14 deletions demo/.devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
]
}
}
}
13 changes: 13 additions & 0 deletions demo/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -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",
}

0 comments on commit 2235515

Please sign in to comment.