nixvim/plugins/lang/ruby.nix
Lander Van den Bulcke 25262c7a9c
fix: deprecation warnings
Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
2025-10-20 13:00:16 +02:00

16 lines
251 B
Nix

{ pkgs, ... }:
{
withRuby = false;
plugins.lsp.servers = {
rubocop.enable = true;
ruby_lsp.enable = true;
};
extraPackages = with pkgs; [
gcc # needed for compiling native extensions
gnumake
libyaml
pkg-config
];
}