VSCode Essentials
Extension pack that includes all the tools I use daily as a developer.
Extensions Included
Recommended Settings
- Note that the settings below assumes you have iTerm2 installed using zsh.
{
"terminal.external.osxExec": "iTerm.app",
"terminal.integrated.shell.osx": "/bin/zsh",
"terminal.integrated.fontFamily": "Inconsolata-dz for Powerline",
"terminal.integrated.fontSize": 13,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"editor.renderIndentGuides": true,
"editor.renderWhitespace": "none",
"editor.renderControlCharacters": false,
"editor.fontSize": 13,
"editor.detectIndentation": false,
"editor.tabSize": 4,
"workbench.colorCustomizations": {
"editor.background": "#16181D",
"terminal.background": "#202020"
},
"workbench.colorTheme": "One Monokai"
}
| |