Skip to content

Commit 781f3fe

Browse files
authored
Merge branch 'master' into python-flatten-list
2 parents 208599c + d531345 commit 781f3fe

File tree

4 files changed

+71
-0
lines changed

4 files changed

+71
-0
lines changed
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# How to Make Engaging Programming Videos
2+
3+
This repository provides the VS Code settings file that's mentioned in the Real Python [How to Make Engaging Programming Videos](https://realpython.com/how-to-make-programming-videos/) tutorial.
4+
5+
## Using the Settings
6+
7+
The provided settings file helps you to have a clutter-free and readable VS Code editor for the project that you want to record in a video.
8+
9+
Here's an example folder structure to show where you can find your existing workspace settings file:
10+
11+
```
12+
project/
13+
14+
├── .vscode/
15+
│ └── settings.json
16+
17+
└── code.py
18+
```
19+
20+
If the `.vscode/` folder and the `settings.json` don't exist, then you can create the file 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).
23+
24+
## Before
25+
26+
[![Before](before.png)](before.png)
27+
28+
## After
29+
30+
[![After](after.png)](after.png)
31+
32+
## Author
33+
34+
- **Philipp Acsany**, E-mail: [[email protected]]([email protected])
35+
36+
## License
37+
38+
Distributed under the MIT license. See [`LICENSE`](../LICENSE) for more information.
404 KB
Loading
393 KB
Loading
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"window.zoomLevel": 2,
3+
"workbench.startupEditor": "none",
4+
"workbench.editorAssociations": {
5+
"*.ipynb": "jupyter.notebook.ipynb"
6+
},
7+
"breadcrumbs.enabled": false,
8+
"editor.minimap.enabled": false,
9+
"workbench.statusBar.visible": false,
10+
"workbench.activityBar.visible": false,
11+
"editor.scrollbar.horizontal": "hidden",
12+
"editor.scrollbar.vertical": "hidden",
13+
"editor.scrollbar.verticalScrollbarSize": 0,
14+
"editor.cursorBlinking": "solid",
15+
"editor.fontSize": 24,
16+
"terminal.integrated.fontSize": 24,
17+
"problems.decorations.enabled": false,
18+
"problems.autoReveal": false,
19+
"outline.problems.enabled": false,
20+
"outline.problems.colors": false,
21+
"outline.problems.badges": false,
22+
"editor.folding": false,
23+
"editor.glyphMargin": false,
24+
"editor.lineDecorationsWidth": 5,
25+
"editor.quickSuggestions": {
26+
"other": false,
27+
"comments": false,
28+
"strings": false
29+
},
30+
"editor.inlineSuggest.enabled": false,
31+
"window.commandCenter": false,
32+
"workbench.layoutControl.enabled": false
33+
}

0 commit comments

Comments
 (0)