Skip to content

Commit 142aad6

Browse files
committed
Add materials
1 parent 61ed422 commit 142aad6

File tree

4 files changed

+65
-0
lines changed

4 files changed

+65
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# How to Make Engaging Programming Videos
2+
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.
4+
5+
## Using the Settings
6+
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).
9+
10+
Depending on your platform, you can find your user settings file here:
11+
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`
15+
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).
17+
18+
## Before
19+
20+
[![Before](before.png)](before.png)
21+
22+
## After
23+
24+
[![After](after.png)](after.png)
25+
26+
## Author
27+
28+
- **Philipp Acsany**, E-mail: [[email protected]]([email protected])
29+
30+
## License
31+
32+
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)