nix-community.nixvim/tests/test-sources/plugins/utils/instant.nix

29 lines
634 B
Nix
Raw Permalink Normal View History

2023-08-16 12:17:19 +02:00
{
empty = {
plugins.instant = {
enable = true;
username = null;
};
};
example = {
plugins.instant = {
enable = true;
username = "Joe";
onlyCwd = true;
cursorHlGroupUser1 = "Cursor";
cursorHlGroupUser2 = "Cursor";
cursorHlGroupUser3 = "Cursor";
cursorHlGroupUser4 = "Cursor";
cursorHlGroupDefault = "Cursor";
nameHlGroupUser1 = "CursorLineNr";
nameHlGroupUser2 = "CursorLineNr";
nameHlGroupUser3 = "CursorLineNr";
nameHlGroupUser4 = "CursorLineNr";
nameHlGroupDefault = "CursorLineNr";
extraOptions = {};
};
};
}