mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-16 04:04:34 +02:00
plugins/instant: init + test
This commit is contained in:
parent
b288ebe672
commit
9f8ce75653
4 changed files with 144 additions and 3 deletions
28
tests/test-sources/plugins/utils/instant.nix
Normal file
28
tests/test-sources/plugins/utils/instant.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
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 = {};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue