fix(extras): use the correct naming when setting up eruby formatter (#4625)

## Description

Eruby files (.*.erb) are not formatted because the formatter name is
incorrect. This PR fixes it.

## Checklist

- [x] I've read the
[CONTRIBUTING](https://github.com/LazyVim/LazyVim/blob/main/CONTRIBUTING.md)
guidelines.
This commit is contained in:
Willian Fernandes 2024-11-08 09:56:05 -03:00 committed by GitHub
parent 2d6687c646
commit 8534af4a79
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -64,7 +64,7 @@ return {
opts = { opts = {
formatters_by_ft = { formatters_by_ft = {
ruby = { formatter }, ruby = { formatter },
eruby = { "erb-format" }, eruby = { "erb_format" },
}, },
}, },
}, },