Skip to content

Commit 111f592

Browse files
committed
Recommend using the settings file for the workspace settings
1 parent 142aad6 commit 111f592

File tree

1 file changed

+14
-8
lines changed

1 file changed

+14
-8
lines changed

making-programming-videos/README.md

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,25 @@
11
# How to Make Engaging Programming Videos
22

3-
This repository provides the VSCode settings file that is mentioned in the Real Python [How to Make Engaging Programming Videos](https://realpython.com/making-programming-videos/) tutorial.
3+
This repository provides the VS Code settings file that is mentioned in the Real Python [How to Make Engaging Programming Videos](https://realpython.com/making-programming-videos/) tutorial.
44

55
## Using the Settings
66

7-
The provided settings file helps you to have a clutter-free and well-readable VSCode editor.
8-
You can either replace or enhance your user settings file with the contents of [settings.json](settings.json).
7+
The provided settings file helps you to have a clutter-free and well-readable VS Code editor for the project you want to record in a video.
98

10-
Depending on your platform, you can find your user settings file here:
9+
Here is an example folder structure to show where you can find your existing workspace settings file:
1110

12-
- Windows: `%APPDATA%\Code\User\settings.json`
13-
- macOS: `$HOME/Library/Application\ Support/Code/User/settings.json`
14-
- Linux: `$HOME/.config/Code/User/settings.json`
11+
```
12+
project/
13+
14+
├── .vscode/
15+
│ └── settings.json
16+
17+
└── code.py
18+
```
1519

16-
To learn more about adjusting your VSCode settings, check out the VSCode documentation on [user and workspace settings](https://code.visualstudio.com/docs/getstarted/settings#_settingsjson).
20+
If the `.vscode/` folder and the `settings.json` don't exist, then you can create it with the contents of [settings.json](settings.json). If you already have an existing settings file, then you may only copy the configuration objects that you want to use.
21+
22+
To learn more about adjusting your VS Code settings, check out the VS Code documentation on [user and workspace settings](https://code.visualstudio.com/docs/getstarted/settings#_settingsjson).
1723

1824
## Before
1925

0 commit comments

Comments
 (0)