1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-05 08:31:05 +01:00
nixvim/plugins/by-name/bullets/default.nix
2025-09-10 09:56:41 +00:00

22 lines
477 B
Nix

{ lib, ... }:
lib.nixvim.plugins.mkVimPlugin {
name = "bullets";
description = ''
Bullets.vim is a Vim plugin for automated bullet lists.
'';
packPathName = "bullets.vim";
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;
};
}