mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 19:46:06 +01:00
13 lines
253 B
Nix
13 lines
253 B
Nix
{ lib, ... }:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "showkeys";
|
|
|
|
maintainers = [ lib.maintainers.HeitorAugustoLN ];
|
|
|
|
settingsExample = {
|
|
timeout = 5;
|
|
maxkeys = 5;
|
|
position = "bottom-center";
|
|
keyformat."<CR>" = "Enter";
|
|
};
|
|
}
|