mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-03 22:04:31 +02:00
plugins/cursorline: init + test
This commit is contained in:
parent
520e1804e4
commit
b809855174
3 changed files with 90 additions and 0 deletions
24
tests/test-sources/plugins/utils/cursorline.nix
Normal file
24
tests/test-sources/plugins/utils/cursorline.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
empty = {
|
||||
plugins.cursorline.enable = true;
|
||||
};
|
||||
|
||||
defaults = {
|
||||
plugins.cursorline = {
|
||||
enable = true;
|
||||
|
||||
cursorline = {
|
||||
enable = true;
|
||||
timeout = 1000;
|
||||
number = false;
|
||||
};
|
||||
cursorword = {
|
||||
enable = true;
|
||||
minLength = 3;
|
||||
hl = {
|
||||
underline = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue