mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-30 12:24:28 +02:00
45 lines
877 B
Nix
45 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;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|