nix-community.nixvim/tests/test-sources/plugins/by-name/vim-test/default.nix
2025-05-24 06:26:17 +10:00

22 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";
};
};
};
}