To format your ruby ββfiles, you do not need an additional plugin, you can just map some keys to do "editor.action.reindentLines"
If you are using the vscode-vim plugin, you can add this to your settings:
"vim.normalModeKeyBindingsNonRecursive": [ { "before": ["=", "="], "commands": ["editor.action.reindentlines"] } ],
Then, in normal mode, vim == reformat your file.
source share