From 7b60fc781a6c06f93771373edb6f17783a3752be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Thu, 28 Nov 2024 12:54:32 +0100 Subject: [PATCH] neovim: disable ruby by default Looking at the ecosystem, I don't see many ruby plugins that would justify having ruby enabled by default. --- pkgs/applications/editors/neovim/utils.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/neovim/utils.nix b/pkgs/applications/editors/neovim/utils.nix index 946619698dbc..40f638076447 100644 --- a/pkgs/applications/editors/neovim/utils.nix +++ b/pkgs/applications/editors/neovim/utils.nix @@ -90,7 +90,7 @@ let /* the function you would have passed to lua.withPackages */ , extraLuaPackages ? (_: []) , withNodeJs ? false - , withRuby ? true + , withRuby ? false , vimAlias ? false , viAlias ? false , configure ? {}