mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
24 lines
531 B
Nix
24 lines
531 B
Nix
|
{ lib, ... }:
|
||
|
lib.nixvim.plugins.mkVimPlugin {
|
||
|
name = "bullets";
|
||
|
url = "https://github.com/bullets-vim/bullets.vim";
|
||
|
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;
|
||
|
};
|
||
|
}
|