Skip to main content

Getting Started with Visual Studio Code

VSCode
Everybody who writes, let it be a story, a piece of code or maybe to take a few notes or something, you need a text editor. This is where VSCode comes in. It can do all a simple note-taking app can do and much more.

With extensions you can extend the functionality of the editor. For example, with Better Fountain extension you can write and format screenplays.

In this article, you’ll learn about installing and basic setup and an overview of some of its features and extensions.

And it is available for all platforms Windows, MacOS and Linux. It is based on the microsoft’s own opensource Code - OSS project which is released under MIT License. VSCode is released under Microsoft product license.

Installation

  • You can download the latest version of Visual Studio Code from here.

  • For Debian based distributions there is a .deb package available, and .rpm package for RHEL, CentOS , fedora, OpenSUSE etc.

  • For Arch-based distributions, there is a community version Code - OSS (also available for other operating systems as VSCodium) without any microsoft customizations or an AUR package for Microsoft’s Visual Studio Code.

  • Alternatively you can use snap packages for many linux distributions including Arch-based distros.

  • You can refer VSCode wiki for more information about installing on

Basic Setup

You’re here. This means you finished your installation successfully. Yay!

Let’s get you setup now.

You’ll be greeted with a welcome page. You can change VSCode shortcuts to emulate other text editors like Sublime, Vim etc. You can add language support for syntax highlighting and intellisense (autocomplete). There is also a shortcut to change theme. And there is an interactive playground which you can use to familiarize yourself with editing features.

Open command palette by pressing Ctrl + Shift + P and type in ‘Color theme’ and change it to your liking. And you can also change icon theme. You can get new color themes and icon themes from VSCode Marketplace by pressing Ctrl + Shift + X or in the extensions tab to your left.

Suppose you opened a .py file which is a python file. It recommends to you to install python extension to provide syntax highlighting and intellisense.

Comments

Popular posts from this blog

Setting up the all new WINDOWS TERMINAL!!!

Microsoft announced the release of the new windows terminal back in May this year with an eye-catching video . And it’s opensource. WARNING! It’s still in preview. Prerequisites You should be on atleast Windows Version 1903 (build 18362) or later. Desktop Bridge VC++ v14 Redistributable Package (For Manual Installation) Installation There are three methods of installing the Terminal. From Microsoft Store (with automatic updates) Go over to Microsoft Store and search for Microsoft Terminal. Manual Installation Head over to the releases page on GitHub repository, grab the installer and install it as any program. Chocolatey (Unofficial) You can also install using chocolatey. Just open Command Prompt or PowerShell and Enter the following command to install choco install microsoft-windows-terminal Use this for upgrading to new version choco upgrade microsoft-windows-terminal Setup After installation, you will see the new terminal and it opens a power...