|
| 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