bullets
URL: https://github.com/bullets-vim/bullets.vim/
Maintainers: Daniel Laing
Bullets.vim is a Vim plugin for automated bullet lists.
plugins.bullets.enable
Whether to enable bullets.
Type: boolean
Default:
false
Example:
true
Declared by:
plugins.bullets.package
The bullets package to use.
Type: package
Default:
pkgs.vimPlugins.bullets-vim
Declared by:
plugins.bullets.autoLoad
Whether to automatically load bullets when neovim starts.
Type: boolean
Default:
true
Example:
false
Declared by:
plugins.bullets.settings
The configuration options for bullets without the bullets_ prefix.
For example, the following settings are equivialent to these :setglobal commands:
- foo_bar = 1->- :setglobal bullets_foo_bar=1
- hello = "world"->- :setglobal bullets_hello="world"
- some_toggle = true->- :setglobal bullets_some_toggle
- other_toggle = false->- :setglobal nobullets_other_toggle
Type: lua value
Default:
{ }
Example:
{
  enable_in_empty_buffers = 0;
  enabled_file_types = [
    "markdown"
    "text"
    "gitcommit"
    "scratch"
  ];
  nested_checkboxes = 0;
}
Declared by: