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