mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
19 lines
240 B
Nix
19 lines
240 B
Nix
|
{
|
||
|
empty = {
|
||
|
plugins.vim-bbye.enable = true;
|
||
|
};
|
||
|
|
||
|
test = {
|
||
|
plugins.vim-bbye = {
|
||
|
enable = true;
|
||
|
|
||
|
keymapsSilent = false;
|
||
|
|
||
|
keymaps = {
|
||
|
bdelete = "<C-w>";
|
||
|
bwipeout = "<C-t>";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|