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
2025-10-18 18:37:13 +00:00

29 lines
494 B
Nix

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