plugins/bullets: init

This commit is contained in:
Daniel 2025-02-13 15:19:23 +00:00
parent 78b6f8e1e5
commit ff63fc92ed
No known key found for this signature in database
GPG key ID: D2643BD213BC0FA8
2 changed files with 45 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ 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;
};
}

View file

@ -0,0 +1,22 @@
{
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;
};
};
};
}