mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-28 11:34:41 +03:00
28 lines
892 B
Markdown
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 />
|