mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-23 04:05:06 +02:00
plugins/vimux: init
This commit is contained in:
parent
2d18a77432
commit
31139e0605
3 changed files with 207 additions and 0 deletions
40
tests/test-sources/plugins/by-name/vimux/default.nix
Normal file
40
tests/test-sources/plugins/by-name/vimux/default.nix
Normal file
|
@ -0,0 +1,40 @@
|
|||
{
|
||||
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 = { };
|
||||
Debug = false;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
example = {
|
||||
plugins.vimux = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
Height = "25";
|
||||
Orientation = "h";
|
||||
UseNearest = 0;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue