Skip to content

VSCode

Visual Studio Code is a lightweight but powerful source code editor which runs on your desktop and is available for Linux, macOS and Windows.

See also viatsko/awesome-vscode for a curated list of delightful VS Code packages and resources.

Install

curl -fsSL https://packages.microsoft.com/keys/microsoft.asc | sudo gpg --dearmor -o /usr/share/keyrings/packages.microsoft.gpg
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/packages.microsoft.gpg] https://packages.microsoft.com/repos/code stable main" | sudo tee /etc/apt/sources.list.d/vscode.list > /dev/null
sudo apt update && sudo apt install -y code
sudo snap install code --classic

VSCode Settings

Change VS Code UI font

  1. Install the Customize UI plugin and restart VS Code.1
  2. In VS Code Settings, set Customize UI Font:Monospace and/or Customize UI Font:Regular to your liking.

Better-looking menu bar

Add this entry to settings.json (Ask Ubuntu thread)

{
  "window.titleBarStyle": "custom",
}

Reload VSCode to apply the changes.

Line height

You can increase line height to make you code look better.

Search for Line height in VSCode settings and set it to a higher number. (For example, 1.4)

Markdown settings

Markdown in VSCode

  • Link validation: set "markdown.validate.enabled": true.
  • Automatic link updates: set "markdown.updateLinksOnFileMove.enabled": prompt

VSCode extensions

Themes

VSCode themes

Version control and continuous integration (CI)

Formatting

View files

Comments