mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
23 lines
347 B
Nix
23 lines
347 B
Nix
|
{
|
||
|
empty = {
|
||
|
plugins.bullets.enable = true;
|
||
|
};
|
||
|
|
||
|
example = {
|
||
|
plugins.bullets = {
|
||
|
enable = true;
|
||
|
|
||
|
settings = {
|
||
|
enabled_file_types = [
|
||
|
"markdown"
|
||
|
"text"
|
||
|
"gitcommit"
|
||
|
"scratch"
|
||
|
];
|
||
|
nested_checkboxes = 0;
|
||
|
enable_in_empty_buffers = 0;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|