Files
nixos-config/home/programs/nixvim/plugins/bullets.nix
Elias Schröter 761067ca6e nixvim plugins
install all currently wanted plugins
2026-04-13 18:09:16 +02:00

66 lines
1.1 KiB
Nix

{ ... }:
{
programs.nixvim.plugins.bullets = {
enable = true;
lazyLoad.settings.filetypes = [ "md" "txt" "gitcommit" ];
settings = {
enabled_file_types = [
"markdown"
"text"
"gitcommit"
];
set_mappings = 0;
checkbox_markers = " -X";
custom_mappings = [
[
"nmap"
"<leader>mn"
"<Plug>(bullets-newline)"
]
[
"vmap"
"<leader>mr"
"<Plug>(bullets-renumber)"
]
[
"nmap"
"<leader>mr"
"<Plug>(bullets-renumber)"
]
[
"imap"
"<C-t>"
"<Plug>(bullets-demote)"
]
[
"nmap"
">>"
"<Plug>(bullets-demote)"
]
[
"vmap"
">"
"<Plug>(bullets-demote)"
]
[
"imap"
"<C-d>"
"<Plug>(bullets-promote)"
]
[
"nmap"
"<<"
"<Plug>(bullets-promote)"
]
[
"vmap"
"<"
"<Plug>(bullets-promote)"
]
];
};
};
}