mirror of
https://github.com/nix-community/home-manager
synced 2024-11-22 20:53:14 +00:00
neovim/coc: fix withNodeJs
value when enabling coc (#3048)
This commit is contained in:
parent
06bb67ab24
commit
e622bad163
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue