mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 11:36:07 +01:00
29 lines
510 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
}
|