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

27 lines
651 B
Nix
Raw Normal View History

2023-08-16 12:17:19 +02:00
{
empty = {
plugins.instant.enable = true;
2023-08-16 12:17:19 +02:00
};
example = {
plugins.instant = {
enable = true;
settings = {
username = "Joe";
onlyCwd = true;
cursor_hl_group_user1 = "Cursor";
cursor_hl_group_user2 = "Cursor";
cursor_hl_group_user3 = "Cursor";
cursor_hl_group_user4 = "Cursor";
cursor_hl_group_default = "Cursor";
name_hl_group_user1 = "CursorLineNr";
name_hl_group_user2 = "CursorLineNr";
name_hl_group_user3 = "CursorLineNr";
name_hl_group_user4 = "CursorLineNr";
name_hl_group_default = "CursorLineNr";
};
2023-08-16 12:17:19 +02:00
};
};
}