nix-config/modules/home-manager/neovim/config/plugins/vim-test.nix

21 lines
346 B
Nix
Raw Normal View History

2025-06-02 02:09:06 +01:00
{ config, lib, ... }:
{
plugins.vim-test.enable = true;
keymaps = lib.mkIf config.plugins.vim-test.enable [
2025-07-10 22:55:59 +01:00
{
key = "<leader>tf";
action = "<cmd>TestFile<CR>";
}
{
key = "<leader>tl";
action = "<cmd>TestLast<CR>";
}
{
key = "<leader>tn";
action = "<cmd>TestNearest<CR>";
}
2025-06-02 02:09:06 +01:00
];
}