1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00
nixvim/tests/test-sources/plugins/by-name/eyeliner/default.nix
saygo-png 79d53a50e2 tests: use __empty and __raw
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-11-05 21:26:13 +00:00

29 lines
510 B
Nix

{
empty = {
plugins.eyeliner.enable = true;
};
defaults = {
plugins.eyeliner = {
enable = true;
settings = {
highlight_on_key = false;
dim = false;
max_length = 9999;
disabled_filetypes.__empty = { };
disabled_buftypes.__empty = { };
default_keymaps = true;
};
};
};
example = {
plugins.eyeliner = {
enable = true;
settings = {
highlight_on_key = true;
dim = true;
};
};
};
}