Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions website/docs/getting-started/editor-setup.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: 'Editor Setup'
title: 'Editor setup'
description: 'Setting your code editor'
---

Expand Down Expand Up @@ -110,7 +110,7 @@ impl Component for $NAME$ {
}
```

## Support for the `html!` Macro
## Support for the `html!` macro

### JetBrains IDEs

Expand All @@ -124,13 +124,13 @@ Utilities like Rename, Go to Declaration, Find Usages will work inside the macro

### VS Code

#### Rust-Yew extension
#### The Rust-Yew extension

> This is a **work in progress**, and **community maintained** project! [Please see details and direct related bug reports / issues / questions over to the extension's repository](https://github.com/TechTheAwesome/code-yew-server)

Rust-Yew extension is [available on VSC Marketplace](https://marketplace.visualstudio.com/items?itemName=TechTheAwesome.rust-yew), providing syntax highlight, renames, hover, and more.
The Rust-Yew extension is [available on VSC Marketplace](https://marketplace.visualstudio.com/items?itemName=TechTheAwesome.rust-yew), providing syntax highlighting, renames, hover, and more.

Emmet support should work out of the box, if not please fall back to edditing the `settings.json` file:
Emmet support should work out of the box; if not, please fall back to editing the `settings.json` file:

```json
"emmet.includeLanguages": {
Expand All @@ -142,7 +142,7 @@ Emmet support should work out of the box, if not please fall back to edditing th

#### Lazyvim

> Below configuration works with [LazyVim](https://www.lazyvim.org) configuration and lazy.vim plugin, create a file in `lua/plugins/nvim-lspconfig.lua` (or update your `lspconfig`) with:
> The below configuration works with [LazyVim](https://www.lazyvim.org) and the lazy.vim plugin. Create a file in `lua/plugins/nvim-lspconfig.lua` (or update your `lspconfig`) with:

```json
return {
Expand Down