1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00
nixvim/plugins/by-name/eyeliner/default.nix
2025-10-18 18:37:13 +00:00

17 lines
408 B
Nix

{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "eyeliner";
package = "eyeliner-nvim";
description = "Move faster with unique f/F indicators";
maintainers = [ lib.maintainers.axka ];
settingsExample = lib.literalExpression ''
{
# show highlights only after keypress
highlight_on_key = true;
# dim all other characters if set to true
dim = true;
}
'';
}