From e622bad16372aa5ada79a7fa749ec78715dffc54 Mon Sep 17 00:00:00 2001 From: Nick Bathum Date: Wed, 22 Jun 2022 16:14:18 -0400 Subject: [PATCH] neovim/coc: fix `withNodeJs` value when enabling coc (#3048) --- modules/programs/neovim.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/programs/neovim.nix b/modules/programs/neovim.nix index c4469b558..6308dba11 100644 --- a/modules/programs/neovim.nix +++ b/modules/programs/neovim.nix @@ -368,7 +368,7 @@ in { neovimConfig = pkgs.neovimUtils.makeNeovimConfig { inherit (cfg) extraPython3Packages withPython3 withRuby viAlias vimAlias; - withNodeJs = cfg.withNodeJs or cfg.coc.enable; + withNodeJs = cfg.withNodeJs || cfg.coc.enable; configure = cfg.configure // moduleConfigure; plugins = map suppressNotVimlConfig pluginsNormalized; customRC = cfg.extraConfig;