Files
nixos-config/home/programs/nixvim-old/plugins/bullets.nix
Elias Schröter d7b58e2216 nixvim
install initial nixvim
2026-04-08 10:13:11 +02:00

69 lines
1.3 KiB
Nix

{ ... }:
{
programs.nixvim = {
plugins = {
bullets = {
enable = true;
settings = {
enabled_file_types = [
"markdown"
"text"
"gitcommit"
];
set_mappings = 0;
checkbox_markers = " -X";
custom_mappings = [
[
"nmap"
"o"
"<Plug>(bullets-newline)"
]
[
"vmap"
"gN"
"<Plug>(bullets-renumber)"
]
[
"nmap"
"gN"
"<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)"
]
];
};
};
};
};
}