home: fix rubocop for zed

This commit is contained in:
Joakim Repomaa
2025-04-02 09:19:40 +03:00
parent d0cb28b8b1
commit ef097ca283

View File

@@ -53,7 +53,7 @@ in
Ruby = {
language_servers = [
"ruby-lsp"
"!rubocop"
"rubocop"
"!solargraph"
];
formatter.external = {
@@ -89,6 +89,16 @@ in
nixd.binary.path = lib.getExe nixd;
nil.binary.path = lib.getExe nil;
ruby-lsp.binary.path = lib.getExe ruby-lsp;
rubocop = {
binary = {
path = "bundle";
arguments = [
"exec"
"rubocop"
"--lsp"
];
};
};
yaml-language-server.binary = {
path = lib.getExe yaml-language-server;
arguments = [ "--stdio" ];