mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-23 09:18:38 +02:00
Netman tries to call 'docker -v' and it hangs neovim if the docker command is not found. This adds the docker binary to the derivation running checks
13 lines
199 B
Nix
13 lines
199 B
Nix
{
|
|
empty = {
|
|
plugins.netman.enable = true;
|
|
};
|
|
|
|
withNeotree = {
|
|
plugins.neo-tree.enable = true;
|
|
plugins.netman = {
|
|
enable = true;
|
|
neoTreeIntegration = true;
|
|
};
|
|
};
|
|
}
|