mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 17:03:31 +02:00
28 lines
609 B
Nix
28 lines
609 B
Nix
|
{
|
||
|
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";
|
||
|
};
|
||
|
};
|
||
|
}
|