mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
26 lines
651 B
Nix
26 lines
651 B
Nix
{
|
|
empty = {
|
|
plugins.instant.enable = true;
|
|
};
|
|
|
|
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";
|
|
};
|
|
};
|
|
};
|
|
}
|