mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-10 01:04:34 +02:00
plugins/modicator: init
This commit is contained in:
parent
51203927e3
commit
fda1b96978
2 changed files with 71 additions and 0 deletions
45
tests/test-sources/plugins/by-name/modicator/default.nix
Normal file
45
tests/test-sources/plugins/by-name/modicator/default.nix
Normal file
|
@ -0,0 +1,45 @@
|
|||
{
|
||||
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;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue