mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-21 08:35:53 +02:00
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:
parent
2d6687c646
commit
8534af4a79
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ return {
|
|||
opts = {
|
||||
formatters_by_ft = {
|
||||
ruby = { formatter },
|
||||
eruby = { "erb-format" },
|
||||
eruby = { "erb_format" },
|
||||
},
|
||||
},
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue