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 authored and GitHub committed 2024-11-08 13:56:05 +01:00
1 parent 2d6687c646
commit 8534af4a79
1 file changed
+1 -1
+1 -1
View File
@@ -64,7 +64,7 @@ return {
opts = {
formatters_by_ft = {
ruby = { formatter },
eruby = { "erb-format" },
eruby = { "erb_format" },
},
},
},