nix-community.nixvim/tests/test-sources/plugins/by-name/bullets/default.nix
2025-02-13 16:52:11 +00:00

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;
};
};
};
}