mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
45 lines
779 B
Nix
45 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;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|