Theme
Hyper Term Theme - https://marketplace.visualstudio.com/items?itemName=hsnazar.hyper-term-theme
Font
Inconsolata - https://fonts.google.com/specimen/Inconsolata
And presto! We have math rendering on our blog! Inline math like or seems to be working fine without messing up the line height too much. Block level math is also pretty straightforward. Nothing holding me back from calculating some complex integrals the Cauchy way:
Extensions
Beautify - https://marketplace.visualstudio.com/items?itemName=HookyQR.beautify
Bracket Pair Colorizer 2 - https://marketplace.visualstudio.com/items?itemName=CoenraadS.bracket-pair-colorizer-2
ESLint - https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint
File Utils - https://marketplace.visualstudio.com/items?itemName=sleistner.vscode-fileutils
GitLens - https://marketplace.visualstudio.com/items?itemName=eamodio.gitlens
Indent on Paste - https://marketplace.visualstudio.com/items?itemName=gazugafan.vscode-indent-on-paste
Prettier - Code formatter - https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode
Project Manager - https://marketplace.visualstudio.com/items?itemName=alefragnani.project-manager
Settings Sync - https://marketplace.visualstudio.com/items?itemName=Shan.code-settings-sync
Settings
{
"emmet.includeLanguages": {
"javascript": "javascriptreact",
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.fontSize": 16,
"editor.minimap.enabled": false,
"editor.occurrencesHighlight": false,
"editor.parameterHints.enabled": false,
"editor.renderWhitespace": "all",
"editor.selectionHighlight": false,
"editor.wordWrap": "on",
"explorer.compactFolders": false,
"git.confirmSync": false,
"workbench.startupEditor": "newUntitledFile",
}