diff --git a/website/docs/getting-started/editor-setup.mdx b/website/docs/getting-started/editor-setup.mdx index c97a38a7f47..241d12e5f60 100644 --- a/website/docs/getting-started/editor-setup.mdx +++ b/website/docs/getting-started/editor-setup.mdx @@ -137,3 +137,24 @@ Emmet support should work out of the box, if not please fall back to edditing th "rust": "html", } ``` + +### Neovim + +#### 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: + +```json +return { + { + "neovim/nvim-lspconfig", + init_options = { + userLanguages = { + eelixir = "html-eex", + eruby = "erb", + rust = "html", + }, + }, + }, +} +```