1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-09 03:56:05 +01:00
nixvim/tests/test-sources/plugins/by-name/vimux/default.nix
saygo-png 79d53a50e2 tests: use __empty and __raw
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-11-05 21:26:13 +00:00

40 lines
717 B
Nix

{
empty = {
plugins.vimux.enable = true;
};
defaults = {
plugins.vimux = {
enable = true;
settings = {
Height = "20%";
Orientation = "v";
UseNearest = 1;
ResetSequence = "C-u";
PromptString = "Command? ";
RunnerType = "pane";
RunnerName = "";
TmuxCommand = "tmux";
OpenExtraArgs = "";
ExpandCommand = 0;
CloseOnExit = 0;
CommandShell = 1;
RunnerQuery.__empty = { };
Debug = false;
};
};
};
example = {
plugins.vimux = {
enable = true;
settings = {
Height = "25";
Orientation = "h";
UseNearest = 0;
};
};
};
}