1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-09 12:06:05 +01:00
nixvim/tests/test-sources/plugins/by-name/mini-snippets/default.nix
2025-11-02 12:40:53 +00:00

29 lines
577 B
Nix

{ lib, ... }:
{
empty = {
plugins.mini-snippets.enable = true;
};
defaults = {
plugins.mini-snippets = {
enable = true;
settings = {
snippets = lib.nixvim.emptyTable;
mappings = {
expand = "<C-j>";
jump_next = "<C-l>";
jump_prev = "<C-h>";
stop = "<C-c>";
};
expand = {
prepare = lib.nixvim.mkRaw "nil";
match = lib.nixvim.mkRaw "nil";
select = lib.nixvim.mkRaw "nil";
insert = lib.nixvim.mkRaw "nil";
};
};
};
};
}