mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
46 lines
779 B
Nix
46 lines
779 B
Nix
|
{
|
||
|
empty = {
|
||
|
plugins.modicator.enable = true;
|
||
|
};
|
||
|
|
||
|
default = {
|
||
|
plugins.modicator = {
|
||
|
enable = true;
|
||
|
|
||
|
settings = {
|
||
|
show_warnings = false;
|
||
|
highlights = {
|
||
|
defaults = {
|
||
|
bold = false;
|
||
|
italic = false;
|
||
|
};
|
||
|
use_cursorline_background = false;
|
||
|
};
|
||
|
integration = {
|
||
|
lualine = {
|
||
|
enabled = true;
|
||
|
mode_section = null;
|
||
|
highlight = "bg";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
example = {
|
||
|
plugins.modicator = {
|
||
|
enable = true;
|
||
|
|
||
|
settings = {
|
||
|
show_warnings = true;
|
||
|
highlights = {
|
||
|
defaults = {
|
||
|
bold = false;
|
||
|
italic = false;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|