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

This commit is contained in:
Gaétan Lepage
2025-08-08 11:59:47 +02:00
committed by GitHub

View File

@@ -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 {