Skip to content

Visual Studio Code

VS Code Extensions

NameAuthor
Alphabetical SorterUgur Erdal
Auto Rename TagJun Han
Autoprefixermrminc
Git HistoryDon Jayamanne
Highlight Matching Tagvincaslt
html-entitieschristopherstyles
LiquidΝίκος
Live Sass CompilerRitwick Dey
Live ServerRitwick Dey
Markdown All in OneYu Zhang
Material Icon ThemePhilipp Kief
Material ThemeMattia Astorino
PrettierPrettier
Project ManagerAlessandro Fragnani
VeturPine Wu
vscode-pdftomoki1207
XML ToolsJosh Johnson

Settings

json
// Preferences: Open Settings
{
  "liveSassCompile.settings.formats": [
    {
      "format": "compressed",
      "extensionName": ".min.css",
      "savePath": "~/../"
    },
    {
      "format": "expanded",
      "extensionName": ".css",
      "savePath": "~/../"
    }
  ],
  "editor.tabSize": 2,
  "workbench.iconTheme": "material-icon-theme",
  "editor.wordWrap": "wordWrapColumn",
  "emmet.includeLanguages": { "liquid": "html" }
}

Keyboard Shortcuts

json
// Preferences: Open Keyboard Shortcuts (JSON)
{
  "key": "ctrl+shift+enter",
  "command": "editor.emmet.action.wrapWithAbbreviation",
  "when": "editorTextFocus && !editorReadonly"
}