mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
44 lines
877 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|