diff --git a/docs/manual/release-notes/rl-0.9.md b/docs/manual/release-notes/rl-0.9.md index 967609dc..e5687d1a 100644 --- a/docs/manual/release-notes/rl-0.9.md +++ b/docs/manual/release-notes/rl-0.9.md @@ -196,8 +196,4 @@ https://github.com/gorbit99/codewindow.nvim - Added [`grug-far.nvim`](https://github.com/MagicDuck/grug-far.nvim) the find and replace tool for neovim. -[Ladas552](https://github.com/Ladas552) - -- Changed `withRuby` to not be enabled by default - diff --git a/modules/wrapper/environment/options.nix b/modules/wrapper/environment/options.nix index fdc07053..5b2f1f63 100644 --- a/modules/wrapper/environment/options.nix +++ b/modules/wrapper/environment/options.nix @@ -106,9 +106,16 @@ in { ''; }; - withRuby = mkEnableOption '' - Ruby support in the Neovim wrapper - ''; + # This defaults to `true` in the wrapper + # and since we pass this value to the wrapper + # with an inherit, it should be `true` here as well + withRuby = + mkEnableOption '' + Ruby support in the Neovim wrapper. + '' + // { + default = true; + }; withNodeJs = mkEnableOption '' NodeJS support in the Neovim wrapper