1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00
nixvim/plugins/by-name/vim-test/default.nix

19 lines
459 B
Nix

{ lib, ... }:
lib.nixvim.plugins.mkVimPlugin {
name = "vim-test";
globalPrefix = "test#";
description = "Run your tests at the speed of thought.";
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";
};
}