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

View File

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