Unverified Commit bc104307 authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

vimPlugins.nvim-unception: fix on darwin (#431568)

parents 58f6a2cd 178dcba3
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -2752,7 +2752,13 @@ in

  nvim-unception = super.nvim-unception.overrideAttrs {
    # Attempt rpc socket connection
    nvimSkipModules = "client.client";
    nvimSkipModules = [
      "client.client"
    ]
    ++ lib.optionals stdenv.hostPlatform.isDarwin [
      "server.server"
      "unception"
    ];
  };

  nvim-vtsls = super.nvim-vtsls.overrideAttrs {