mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
plugins/bullets: init
This commit is contained in:
parent
78b6f8e1e5
commit
ff63fc92ed
2 changed files with 45 additions and 0 deletions
23
plugins/by-name/bullets/default.nix
Normal file
23
plugins/by-name/bullets/default.nix
Normal 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;
|
||||
};
|
||||
}
|
22
tests/test-sources/plugins/by-name/bullets/default.nix
Normal file
22
tests/test-sources/plugins/by-name/bullets/default.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue