Introduction to Modern Web Development 1 - meta

My VS Code Extensions

Extensions with an asterisk* aren’t related to this course but you may find them handy on other projects.

Here are my VS Code configuration options. For a ligature font, try Fira Code.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
  "window.zoomLevel": 0,
"explorer.confirmDragAndDrop": false,
"editor.fontFamily": "'Fira Code', 'monospace'",
"editor.fontSize": 17,
"editor.fontLigatures": true,
"editor.formatOnSave": false,
"editor.detectIndentation": false,
"javascript.format.enable": false,
"editor.tabSize": 2,
"workbench.colorTheme": "Dracula",
"spellright.language": ["English (American)"],
"spellright.documentTypes": ["markdown", "latex", "plaintext"],
"liveServer.settings.donotShowInfoMsg": true,
"terminal.integrated.rendererType": "canvas",
"editor.multiCursorModifier": "ctrlCmd",
"prettier.singleQuote": true,
"prettier.eslintIntegration": true,
"prettier.tabWidth": 2,
"prettier.semi": false,
"beautify.language": {
"html": ["html"],
"css": [],
"js": []
},
"extensions.ignoreRecommendations": true,
"vetur.completion.useScaffoldSnippets": false,
"editor.cursorBlinking": "phase",
"editor.cursorWidth": 2,
"editor.minimap.enabled": false,
"editor.formatOnPaste": true,
"workbench.editor.highlightModifiedTabs": true,
"files.trimFinalNewlines": true,
"window.titleBarStyle": "custom"
}