Migrate configuration to nixvim
This commit is contained in:
parent
be9fe07ba1
commit
8772a4ca32
18 changed files with 759 additions and 0 deletions
23
config/plugins/editor/bufdelete.nix
Normal file
23
config/plugins/editor/bufdelete.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
plugins.bufdelete = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
keymaps = [
|
||||
{
|
||||
mode = "n";
|
||||
key = "<leader>bd";
|
||||
action = "<cmd>Bdelete<cr>";
|
||||
options.desc = "Buffer Delete";
|
||||
}
|
||||
{
|
||||
mode = "n";
|
||||
key = "<leader>bw";
|
||||
action = "<cmd>Bwipeout<cr>";
|
||||
options.desc = "Buffer Wipeout";
|
||||
}
|
||||
];
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue