mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
19 lines
400 B
Nix
19 lines
400 B
Nix
|
{ 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";
|
||
|
};
|
||
|
}
|