File tree Expand file tree Collapse file tree 2 files changed +45
-0
lines changed
tests/test-sources/plugins/by-name/bullets Expand file tree Collapse file tree 2 files changed +45
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments