Skip to content

Commit e0f85d9

Browse files
committed
Update README to include installed components and advanced installation options for Visual Studio Code
1 parent f766618 commit e0f85d9

File tree

1 file changed

+23
-4
lines changed

1 file changed

+23
-4
lines changed

Diff for: README.md

+23-4
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,12 @@ code --install-extension @outdated --force
4646
```
4747

4848
## Installed Components 📦
49+
- Visual Studio Code (latest stable via snap)
50+
- GitHub Copilot
51+
- GitHub Copilot Chat
4952
- 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
5455

5556
## Restricted Mode 🔒
5657

@@ -87,6 +88,24 @@ code --install-extension <extension-id> --force
8788

8889
## Advanced Installation Options 🛠️
8990

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+
90109
### Debug Mode
91110
Run the script in debug mode:
92111
```bash

0 commit comments

Comments
 (0)