Skip to content

Commit ff63fc9

Browse files
committed
plugins/bullets: init
1 parent 78b6f8e commit ff63fc9

File tree

2 files changed

+45
-0
lines changed

2 files changed

+45
-0
lines changed

plugins/by-name/bullets/default.nix

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{ lib, ... }:
2+
lib.nixvim.plugins.mkVimPlugin {
3+
name = "bullets";
4+
url = "https://github.com/bullets-vim/bullets.vim";
5+
description = ''
6+
Bullets.vim is a Vim plugin for automated bullet lists.
7+
'';
8+
packPathName = "bullets.vim";
9+
package = "bullets-vim";
10+
globalPrefix = "bullets_";
11+
maintainers = [ lib.maintainers.DanielLaing ];
12+
13+
settingsExample = {
14+
enabled_file_types = [
15+
"markdown"
16+
"text"
17+
"gitcommit"
18+
"scratch"
19+
];
20+
nested_checkboxes = 0;
21+
enable_in_empty_buffers = 0;
22+
};
23+
}
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
empty = {
3+
plugins.bullets.enable = true;
4+
};
5+
6+
example = {
7+
plugins.bullets = {
8+
enable = true;
9+
10+
settings = {
11+
enabled_file_types = [
12+
"markdown"
13+
"text"
14+
"gitcommit"
15+
"scratch"
16+
];
17+
nested_checkboxes = 0;
18+
enable_in_empty_buffers = 0;
19+
};
20+
};
21+
};
22+
}

0 commit comments

Comments
 (0)