neovim: disable ruby provider by default
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
{ config, ... }:
|
||||
{
|
||||
time = "2026-03-12T13:04:00+00:00";
|
||||
condition = config.programs.neovim.enable;
|
||||
message = ''
|
||||
The ruby provider is now disabled by default since the overwhelming majority of users do not use it.
|
||||
Set `programs.neovim.withRuby = true;` to restore the previous behavior.
|
||||
'';
|
||||
}
|
||||
@@ -118,7 +118,7 @@ in
|
||||
|
||||
withRuby = mkOption {
|
||||
type = types.nullOr types.bool;
|
||||
default = true;
|
||||
default = false;
|
||||
description = ''
|
||||
Enable ruby provider.
|
||||
'';
|
||||
|
||||
Reference in New Issue
Block a user