This is my configurations and extensions for VS Code, my new editor.
basic commands that I use
Cmd + Pto open any fileCmd + Shift + Pto access the command paletteCmd + Shift + ´to access the terminalCmd + K + Bto open and close explorerCmd + ,to open settings file
Open the user settings file, Cmd + ,. Here, you'll find all of the settings that can be modified for VS Code. Once you find one that you want to modify, click next to it and it will be copied over into your own settings file. A few good custom settings to start with are font size and font family.
{
"editor.fontFamily": "Fira Code Medium",
"editor.fontSize": 15,
"editor.fontLigatures": true,
"editor.lineHeight": 40,
"workbench.colorTheme": "Magoon",
"workbench.iconTheme": "vs-seti",
"workbench.sideBar.location": "left",
"window.menuBarVisibility": "toggle",
"editor.minimap.enabled": false,
"explorer.openEditors.visible": 0,
"workbench.statusBar.visible": false,
"vsicons.projectDetection.autoReload": true,
"editor.renderIndentGuides": false,
"vsicons.dontShowNewVersionMessage": true,
"atomKeymap.promptV3Features": true
}The list of extensions with links to the VSCode marketplace. To install press Cmd + P and paste the install command listed next to each extension.
-
ext install All-AutocompleteProvides autocompletion in Visual Studio Code items based on all open editors.
-
ext install auto-close-tagAutomatically add HTML/XML close tag, same as Visual Studio IDE or Sublime Text does.
-
ext install autoimportAutomatically finds, parses and provides code actions and code completion for all available imports. Works with Typescript and TSX.
-
ext install beautifyBeautify javascript, JSON, CSS, Sass, and HTML in Visual Studio Code.
-
ext install code-settings-syncPreviously known as Visual Studio Code Settings Sync.
-
ext install craneCrane is a productivity enhancement extension for Visual Studio Code that provides code-completion for PHP.
-
ext install html-snippetsThis extension adds rich language support for the HTML Markup to VS Code.
-
ext install laravel-bladeLaravel blade snippets and syntax highlight support for Visual Studio Code.