File tree 1 file changed +23
-4
lines changed
1 file changed +23
-4
lines changed Original file line number Diff line number Diff line change @@ -46,11 +46,12 @@ code --install-extension @outdated --force
46
46
```
47
47
48
48
## Installed Components 📦
49
+ - Visual Studio Code (latest stable via snap)
50
+ - GitHub Copilot
51
+ - GitHub Copilot Chat
49
52
- Build essentials (gcc, g++, make)
50
- - Visual Studio Code (latest stable)
51
- - C++ extensions and tools
52
- - Clang tools and linting
53
- - Syntax highlighting
53
+ - Git (latest stable)
54
+ - Common development tools and libraries
54
55
55
56
## Restricted Mode 🔒
56
57
@@ -87,6 +88,24 @@ code --install-extension <extension-id> --force
87
88
88
89
## Advanced Installation Options 🛠️
89
90
91
+ ### Custom Installation Path
92
+ Install VS Code in a specific location:
93
+ ``` bash
94
+ sudo bash install_vscode.sh --install-path /custom/path
95
+ ```
96
+
97
+ ### Non-Interactive Mode
98
+ Run the script without any prompts:
99
+ ``` bash
100
+ sudo bash install_vscode.sh --yes
101
+ ```
102
+
103
+ ### Extension Management
104
+ Install specific extensions during setup:
105
+ ``` bash
106
+ sudo bash install_vscode.sh --extensions " ms-python.python ms-vscode.cpptools"
107
+ ```
108
+
90
109
### Debug Mode
91
110
Run the script in debug mode:
92
111
``` bash
You can’t perform that action at this time.
0 commit comments