nix-community.nixvim/tests/test-sources/plugins/by-name/bullets/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
347 B
Nix
Raw Normal View History

2025-02-13 15:19:23 +00:00
{
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;
};
};
};
}