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

plugins/showkeys: init

This commit is contained in:
Heitor Augusto 2025-10-25 17:13:15 -03:00 committed by Gaétan Lepage
parent 03c0dabb9a
commit 3dd024dc2c
2 changed files with 72 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "showkeys";
maintainers = [ lib.maintainers.HeitorAugustoLN ];
settingsExample = {
timeout = 5;
maxkeys = 5;
position = "bottom-center";
keyformat."<CR>" = "Enter";
};
}