Visual Studio Code
Visual Studio Code is a lightweight but powerful source code editor which runs on your desktop and is available for Windows, macOS and Linux. It comes with built-in support for JavaScript, TypeScript and Node.js and has a rich ecosystem of extensions for other languages (such as C++, C#, Java, Python, PHP, Go) and runtimes (such as .NET and Unity).
Installation
Run in Terminal app:
Add VS Code to your Dock by right-clicking on the icon and choosing
Options
,Keep in Dock
.
Launching from the Command Line
You can also run VS Code from the terminal by typing 'code' after adding it to the path:
Launch VS Code.
Open the Command Palette (⇧⌘P) and type 'shell command' to find the Shell Command: Install 'code' command in PATH command.
Restart the terminal for the new
$PATH
value to take effect. You'll be able to type 'code .' in any folder to start editing files in that folder.
Customization
There are many things you can do to customize VS Code.
Change your theme
Keyboard Shortcut: ⌘K ⌘T
Theme: Material Theme Palenight High Contrast
Icon Theme: Material Theme Icons Palenight
Tune your settings
Keyboard Shortcut: ⌘,
editor.fontFamily
: "Operator Mono"
editor.fontSize
: 13
editor.fontLigatures
: true
editor.formatOnPaste
: true
editor.formatOnType
: false
editor.renderWhitespace
: "all"
editor.snippetSuggestions
: "top"
editor.tabSize
: 2
files.associations
: { ".babelrc": "json5" }
files.autoSave
: "onFocusChange"
explorer.decorations.badges
: false
extensions.ignoreRecommendations
: false
eslint.autoFixOnSave
: true
git.autofetch
: true
git.confirmSync
: false
prettier.eslintIntegration
: true
Install extensions
Last updated