1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 11:36:07 +01:00
nixvim/plugins/by-name/bullets/default.nix
saygo-png c4b27080a6 treewide: infer packPathName menial work
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-09-27 23:49:59 +00:00

21 lines
445 B
Nix

{ lib, ... }:
lib.nixvim.plugins.mkVimPlugin {
name = "bullets";
description = ''
Bullets.vim is a Vim plugin for automated bullet lists.
'';
package = "bullets-vim";
globalPrefix = "bullets_";
maintainers = [ lib.maintainers.DanielLaing ];
settingsExample = {
enabled_file_types = [
"markdown"
"text"
"gitcommit"
"scratch"
];
nested_checkboxes = 0;
enable_in_empty_buffers = 0;
};
}