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:

committed by
GitHub

parent
2d6687c646
commit
8534af4a79
@ -64,7 +64,7 @@ return {
|
|||||||
opts = {
|
opts = {
|
||||||
formatters_by_ft = {
|
formatters_by_ft = {
|
||||||
ruby = { formatter },
|
ruby = { formatter },
|
||||||
eruby = { "erb-format" },
|
eruby = { "erb_format" },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
Reference in New Issue
Block a user