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

19 lines
400 B
Nix
Raw Normal View History

2025-05-23 14:21:01 +02:00
{ lib, ... }:
lib.nixvim.plugins.mkVimPlugin {
name = "vim-test";
globalPrefix = "test#";
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";
};
}