A simple theme with bright colors and comes in three versions — dark, light and mirage for all day long comfortable work.
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
ext install ayu
Then Set File Icon Theme as Ayu
A Visual Studio Code extension with rich support for the Python language (for all actively supported versions of the language: >=3.7), including features such as IntelliSense (Pylance), linting, debugging, code navigation, code formatting, refactoring, variable explorer, test explorer, and more!
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
ext install ms-python.python
A Visual Studio Code extension with support for the pylint linter.
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
ext install Pylint
A Visual Studio Code extension with support for the black formatter. The extension ships with black=23.3.0.
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
ext install ms-python.black-formatter
This extension colorizes the indentation in front of your text, alternating four different colors on each step. Some may find it helpful in writing code for Python, Nim, Yaml, and probably even filetypes that are not indentation dependent.
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
ext install oderwat.indent-rainbow
Every time you press the Enter key in a Python context, this extension will parse your Python file up to the location of your cursor, and determine exactly how much the next line (or two in the case of hanging indents) should be indented and how much nearby lines should be un-indented.
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
ext install KevinRose.vsc-python-indent
A basic spell checker that works well with code and documents.
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
ext install streetsidesoftware.code-spell-checker
Codeium is the modern coding superpower, a free code acceleration toolkit built on cutting edge AI technology. Currently, Codeium provides autocomplete, chat, and search capabilities in 70+ languages, with lightning fast speeds and state-of-the-art suggestion quality.
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
ext install Codeium.codeium
A VS Code extension that gives you a simple command to quickly toggle the global “Bracket Pair Colorization” setting added in VS Code v1.60.
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
ext install 'Bracket Pair Colorization'
Run C, C++, Java, JS, PHP, Python, Perl, Ruby, Go, Lua, Groovy, PowerShell, CMD, BASH, F#, C#, VBScript, TypeScript, CoffeeScript, Scala, Swift, Julia, Crystal, OCaml, R, AppleScript, Elixir, VB.NET, Clojure, Haxe, Obj-C, Rust, Racket, Scheme, AutoHotkey, AutoIt, Kotlin, Dart, Pascal, Haskell, Nim,
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
ext install formulahendry.code-runner
Highlight web colors in your editor
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
ext install naumovs.color-highlight
Support for dotenv file syntax
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
ext install mikestead.dotenv
EditorConfig Support for Visual Studio Code
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
ext install EditorConfig.EditorConfig
Integrates ESLint JavaScript into VS Code.
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
ext install dbaeumer.vscode-eslint
All you need to write Markdown (keyboard shortcuts, table of contents, auto preview and more)
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
ext install yzhang.markdown-all-in-one
Launch a development local Server with live reload feature for static & dynamic pages
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
ext install ritwickdey.LiveServer
Real-time collaborative development from the comfort of your favorite tools.
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
ext install MS-vsliveshare.vsliveshare
Code formatter using prettier
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
ext install esbenp.prettier-vscode
Code formatter using prettier
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
ext install rvest.vs-code-prettier-eslint
{
"editor.fontSize": 16,
"editor.lineHeight": 24,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.rulers": [80, 120],
"editor.formatOnSave": true,
"editor.renderLineHighlight": "gutter",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": true
},
"editor.codeActionsOnSave": {
// For ESLint
"source.fixAll.eslint": true
},
"prettier.useTabs": true,
"terminal.integrated.defaultProfile.linux": "zsh",
"terminal.integrated.fontSize": 14,
"explorer.compactFolders": false,
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"workbench.colorTheme": "Ayu Dark",
"workbench.iconTheme": "ayu",
"editor.bracketPairColorization.enabled": true
}