wasp/web/versioned_docs/version-0.14.0/introduction/editor-setup.md
2024-07-17 16:47:37 +02:00

28 lines
892 B
Markdown

---
title: Editor Setup
slug: /editor-setup
---
import TypescriptServerNote from '../_TypescriptServerNote.md'
:::note
This page assumes you have already installed Wasp. If you do not have Wasp installed yet, check out the [Quick Start](./quick-start.md) guide.
:::
Wasp comes with the Wasp language server, which gives supported editors powerful support and integration with the language.
## VSCode
Currently, Wasp only supports integration with VSCode. Install the [Wasp language extension](https://marketplace.visualstudio.com/items?itemName=wasp-lang.wasp) to get syntax highlighting and integration with the Wasp language server.
The extension enables:
- syntax highlighting for `.wasp` files
- the Prisma extension for `.prisma` files
- scaffolding of new project files
- code completion
- diagnostics (errors and warnings)
- go to definition
and more!
<TypescriptServerNote />