nix-community.nixvim/tests/test-sources/plugins/by-name/aw-watcher/default.nix
2025-03-30 21:26:26 +02:00

44 lines
877 B
Nix

{
empty = {
# don't run tests as they try to access the network.
test.runNvim = false;
plugins.aw-watcher.enable = true;
};
defaults = {
# don't run tests as they try to access the network.
test.runNvim = false;
plugins.aw-watcher = {
enable = true;
settings = {
bucket = {
hostname = "nixvim";
name = "aw-watcher-neovim_nixvim";
};
aw_server = {
host = "127.0.0.1";
port = 5600;
ssl_enable = false;
pulsetime = 30;
};
};
};
};
example = {
# don't run tests as they try to access the network.
test.runNvim = false;
plugins.aw-watcher = {
enable = true;
settings = {
aw_server = {
host = "127.0.0.1";
port = 5600;
pulsetime = 60;
};
};
};
};
}