mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
18 lines
240 B
Nix
18 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>";
|
|
};
|
|
};
|
|
};
|
|
}
|