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/marks/default.nix
saygo-png 0a721c85dc plugins/marks: migrate to mkNeovimPlugin
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-09-30 23:51:22 +00:00

24 lines
662 B
Nix

{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "marks";
package = "marks-nvim";
description = "A better user experience for viewing and interacting with Neovim marks.";
maintainers = [ ];
settingsExample = {
cyclic = true;
refreshInterval = 150;
mappings = {
set = "<Leader>mM";
delete = "<Leader>md";
next = "<Leader>mn";
prev = "<Leader>mp";
toggle = "<Leader>mm";
delete_buf = "<Leader>mc";
delete_line = "<Leader>mD";
};
};
# TODO: introduced 2025-09-29: remove after 26.05
inherit (import ./deprecations.nix lib) deprecateExtraOptions optionsRenamedToSettings imports;
}