The extensions included in this pack involve several aspects as Remote Development, Team Collaboration, Project Management, Genarative AI to assist in coding, devonfw projects development, support for other interesting languages and technologies, code running, testing, linting and IDE configuration:
IMPORTANT: Please, remember to disable any of the following extensions in your workspace in case you are not allowed to use third party tools that require send code fragments to external services. More info at https://code.visualstudio.com/docs/editor/extension-marketplace#_manage-extensions.
-
Remote Development
-
Team Collaboration
- VS Live Share Extension Pack
- Please read the following instructions https://docs.microsoft.com/en-us/visualstudio/liveshare/use/vscode
- VS Live Share Extension Pack
-
Project Management
-
Gen AI
-
-
In order to use Twinny and run a LLM for free and locally without external communication, please follow the next steps:
- Set up Ollama as the backend by default: Install Ollama
- Select your model from the Ollama library (e.g.,
codellama:7b-instruct
for chats andcodellama:7b-code
for auto complete).
$ ollama run codellama:7b-instruct $ ollama run codellama:7b-code
- Open VS Code (if already open a restart might be needed) and press Ctrl/Command + Shift + T to open the side panel.
You should see the 🤖 icon indicating that twinny is ready to use.
- See Keyboard shortcuts to start using while coding 🎉
For other providers and other configuration alternatives, please check official documentation.
-
-
-
Code and documentation helpers
-
- In order to avoid TS lint errors, you must set the
prettier.singleQuote
andprettier.semi
variables totrue
in the VS Code User Settings (Keyboard shortcutCtrl+,
in Windows and Linux orCmd+,
in macOS or pressF1
and start writing User settings). - Another useful feature to avoid TS lint errors is to set the
prettier.trailingComma
variable toall
to trail commas wherever possible. - Besides this, a
.prettierrc
JSON file can be included in the root folder of any Angular project with the following configuration:
{ "singleQuote": true, "trailingComma": "all", "arrowParens": "always", "semi": true }
- Last but not least, the prettier configuration can be also included in every JavaScript/TypeScript project inside the
package.json
file adding its own key:
"prettier": { "singleQuote": true, "trailingComma": "all", "arrowParens": "always", "semi": true }
- Refer to the official documentation https://prettier.io/docs/en/configuration.html for further details.
- In order to avoid TS lint errors, you must set the
-
- Please follow the instructions to configure properly this extension.
-
- This extension assumes that you have the binaries
npm
andmvn
on your PATH.
- This extension assumes that you have the binaries
-
Code linting
- ESLint
- SonarLint
- Accessibility linting for HTML, Angular, React, Markdown, Vue, and React Native axe Accessibility Linter
-
Code runners
-
JavaScript and TypeScript
-
- In Linux/Mac environments and you use
nvm
as node.js version manager, if you get an error of kind/usr/bin/env: ‘node’: No such file or directory
you can use the following setting to fix it:
"jest.nodeEnv": { "PATH": "add here your local environment path with nvm" },
- In Linux/Mac environments and you use
-
Nx Console for monorepos. More info at https://nx.dev/latest/angular/getting-started/console.
-
SCSS and CSS
-
Git
-
Swagger and API definition
-
UML
-
Rust
-
Python
-
C++
-
.NET
-
Java
- Java Extension Pack
- Spring Boot Extension Pack
- Community Server Connectors
- Lombok
- In order to make Java work properly you must set the
java.home
variable in the VS Code User Settings (Keyboard shortcutCtrl+,
in Windows and Linux orCmd+,
in macOS or pressF1
and start writing User settings) - In order to check the Java extensions for VS Code and test others available you can press F1 and choose Java: Extension Guide.
-
Docker
-
Kubernetes
-
Themes
- Cobalt2 Theme Official - Press F1, choose Color Theme option and select Cobalt.
- Noctis - collection of light & dark themes - Press F1, choose Color Theme option and select one of multiple schemes beginning with Noctis.
- GitHub Theme - Press F1, choose Color Theme option and select one of multiple schemes beginning with GitHub.
- vscode-icons - Press F1, choose File Icon Theme option and select VSCode Icons.
-
AsciiDoc
-
XML
-
YAML
-
Miscellaneous
- SpellChecker
- LineCount
- Lorem ipsum
- Resource Monitor
- Draw.io Diagram Editor
- Embedded version of the Draw.io graphical diagram editor. Uses an offline version of Draw.io by default.
In order to install this package Microsoft Visual Studio Code 1.51.0 at least must be installed. It is recommended to upgrade VS Code in any case.
The new Python extensions enable VS Code as a 1st class citizen Python IDE. We recommend to use tools like pyenv
(here for Linux/macOS or here for Windows) to install multiple Python versions and make it local to every project.
See C/C++ for Visual Studio Code for a Guide on how to configure and use the extension enabling C/C++ support for Visual Studio Code. This provides support for cross-platform C and C++ development using VS Code on Windows, Linux, and macOS.
AsciiDoc extension comes with Asciidoctor.js library for preview bundled. If you want to use the Ruby version of Asciidoctor you need to change the AsciiDoc.use_asciidoctor_js
setting to false.
In order to be able to use the AsciiDoc Ruby version you have to install Ruby on your system and the Asciidoctor tool running the following command in the terminal:
gem install asciidoctor