nixvim plugins

install all currently wanted plugins
This commit is contained in:
2026-04-13 18:09:16 +02:00
parent d7b58e2216
commit 761067ca6e
82 changed files with 1201 additions and 1468 deletions

View File

@@ -0,0 +1,48 @@
{ ... }:
{
programs.nixvim = {
plugins = {
comment-box = {
enable = true;
autoLoad = true;
};
which-key.settings.spec = [
{
__unkeyed-1 = "<leader>c";
group = "Comment Boxes";
icon = " ";
}
];
};
keymaps = [
{
key = "<leader>cb";
action = "<Cmd>CBccbox<CR>";
options.desc = "Box Title";
}
{
key = "<leader>ct";
action = "<Cmd>CBllline<CR>";
options.desc = "Titled Line";
}
{
key = "<leader>cl";
action = "<Cmd>CBline<CR>";
options.desc = "Simple Line";
}
{
key = "<leader>cm";
action = "<Cmd>CBllbox14<CR>";
options.desc = "Marked";
}
{
key = "<leader>cd";
action = "<Cmd>CBd<CR>";
options.desc = "Remove a Box";
}
];
};
}