mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
23 lines
416 B
Nix
23 lines
416 B
Nix
|
{
|
||
|
empty = {
|
||
|
plugins.vim-test.enable = true;
|
||
|
};
|
||
|
|
||
|
example = {
|
||
|
plugins.vim-test = {
|
||
|
enable = true;
|
||
|
|
||
|
settings = {
|
||
|
preserve_screen = false;
|
||
|
"javascript#jest#options" = "--reporters jest-vim-reporter";
|
||
|
strategy = {
|
||
|
nearest = "vimux";
|
||
|
file = "vimux";
|
||
|
suite = "vimux";
|
||
|
};
|
||
|
"neovim#term_position" = "vert";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|