plugins/aw-watcher: init

This commit is contained in:
Axel Karjalainen 2025-03-17 01:33:22 +02:00 committed by Gaétan Lepage
parent a3b16fa004
commit d81f37256d
2 changed files with 97 additions and 0 deletions

View file

@ -0,0 +1,44 @@
{
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;
};
};
};
};
}