nix-community.nixvim/plugins/by-name/vim-test/default.nix

20 lines
459 B
Nix
Raw Normal View History

2025-05-23 14:21:01 +02:00
{ lib, ... }:
lib.nixvim.plugins.mkVimPlugin {
name = "vim-test";
globalPrefix = "test#";
2025-06-18 02:42:47 +03:00
description = "Run your tests at the speed of thought.";
2025-05-23 14:21:01 +02:00
maintainers = [ lib.maintainers.GaetanLepage ];
settingsExample = {
preserve_screen = false;
"javascript#jest#options" = "--reporters jest-vim-reporter";
strategy = {
nearest = "vimux";
file = "vimux";
suite = "vimux";
};
"neovim#term_position" = "vert";
};
}