Skip to content

Commit ca08c91

Browse files
Added VSCode setup doc
1 parent 6f577dd commit ca08c91

File tree

2 files changed

+53
-1
lines changed

2 files changed

+53
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Plus, I made all the course slides available for download, to make it easier to
2222

2323
### Q4: What VSCode theme are you using?
2424

25-
**A:** I use Oceanic Next (dimmed bg) for all my coding and course production.
25+
**A:** I use Oceanic Next (dimmed bg) for all my coding and course production. [Here is my complete VSCode setup](vscode-setup.md).
2626

2727
### Q5: The videos don't load, can you fix it?
2828

vscode-setup.md

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# VSCode setup used in the course
2+
3+
### Theme
4+
5+
I use the `Oceanic Next` theme with the dimmed bg option. [Link →](https://marketplace.visualstudio.com/items?itemName=naumovs.theme-oceanicnext)
6+
7+
### Extensions used in course videos
8+
9+
For each of the extensions, read the overview page in order to learn how to use it.
10+
11+
`Auto Close Tag` to automatically close HTML tags. [Link →](https://marketplace.visualstudio.com/items?itemName=formulahendry.auto-close-tag)
12+
13+
`Auto Rename Tag` to automatically change matching HTML tags. [Link →](https://marketplace.visualstudio.com/items?itemName=formulahendry.auto-rename-tag)
14+
15+
`Color Highlight` to, as the name says, highlight colors in CSS. [Link →](https://marketplace.visualstudio.com/items?itemName=naumovs.color-highlight)
16+
17+
`Paste and Indent` to automatically indent pasted code. [Link →](https://marketplace.visualstudio.com/items?itemName=Rubymaniac.vscode-paste-and-indent)
18+
19+
`Path Intellisense` to autocomplete filenames. [Link →](https://marketplace.visualstudio.com/items?itemName=christian-kohler.path-intellisense)
20+
21+
`Prettier` to automatically format code. [Link →](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode)
22+
23+
### Other extensions I use (will keep it updated)
24+
25+
`Project Manager` to easily switch between projects. One of the most useful extensions. [Link →](https://marketplace.visualstudio.com/items?itemName=alefragnani.project-manager)
26+
27+
### Settings
28+
29+
If you want your editor to work and look exactly the same way as mine does in the course videos, you can copy these settings to your own settings file. Just go to settings in VSCode, and on the right side, you can paste this code.
30+
31+
```
32+
{
33+
"workbench.colorTheme": "Oceanic Next (dimmed bg)",
34+
"files.autoSave": "onFocusChange",
35+
"editor.minimap.enabled": true,
36+
"workbench.statusBar.visible": true,
37+
"workbench.activityBar.visible": true,
38+
"editor.formatOnSave": false,
39+
40+
"workbench.colorCustomizations": {
41+
"statusBar.background": "#333333",
42+
"statusBar.noFolderBackground": "#333333",
43+
"statusBar.debuggingBackground": "#263238"
44+
},
45+
"editor.fontSize": 16,
46+
47+
"css.validate": false,
48+
"scss.validate": false,
49+
"less.validate": false,
50+
"editor.wordWrap": "on"
51+
}
52+
```

0 commit comments

Comments
 (0)