This commit is contained in:
Oliver Davies 2025-06-12 13:00:10 +01:00
parent 9b54b177af
commit 77bce04e39
27 changed files with 2 additions and 2 deletions

View file

@ -0,0 +1,11 @@
{ config, lib, ... }:
{
plugins.vim-test.enable = true;
keymaps = lib.mkIf config.plugins.vim-test.enable [
{ key = "<leader>tf"; action = "<cmd>TestFile<CR>"; }
{ key = "<leader>tl"; action = "<cmd>TestLast<CR>"; }
{ key = "<leader>tn"; action = "<cmd>TestNearest<CR>"; }
];
}