feat(nvim): add hawt-keys plugin

This commit is contained in:
Moritz Böhme 2024-02-12 10:11:13 +01:00
parent 9e4fdb00e3
commit 2be2adcaab
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9
3 changed files with 32 additions and 0 deletions

View file

@ -50,5 +50,18 @@ with builtins;
conf = readFile ./lua/gitsigns-nvim.lua;
dependencies = [{ plugin = which-key-nvim; }];
}
{
plugin = pkgs.vimUtils.buildVimPlugin {
pname = "hawtkeys-nvim";
version = lib.my.mkVersionInput inputs.hawtkeys-nvim;
src = inputs.hawtkeys-nvim;
};
cmd = [ "Hawtkeys" "HawtkeysAll" "HawtkeysDupes" ];
opts = { };
dependencies = [
{ plugin = plenary-nvim; }
{ plugin = nvim-treesitter; }
];
}
];
}