bufdelete: delete buffer without messing up windows
This commit is contained in:
parent
493148c3b8
commit
aea55dcd6c
6 changed files with 37 additions and 19 deletions
|
@ -1,6 +1,6 @@
|
|||
# Nixvim
|
||||
|
||||
## TODO
|
||||
[ ] Open last active buffer after :bd
|
||||
[ ] Code action
|
||||
[ ] DAP support
|
||||
- [ ] Open last active buffer after :bd
|
||||
- [ ] Code action
|
||||
- [ ] DAP support
|
||||
|
|
23
config/buffer/bufdelete.nix
Normal file
23
config/buffer/bufdelete.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ helpers, ... }:
|
||||
{
|
||||
plugins = {
|
||||
bufdelete = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
keymaps = [
|
||||
{
|
||||
mode = [ "n" ];
|
||||
key = "<C-x>";
|
||||
action = helpers.mkRaw ''
|
||||
function()
|
||||
require("bufdelete").bufdelete(0, false)
|
||||
end
|
||||
'';
|
||||
options = {
|
||||
desc = "Toggle terminal";
|
||||
};
|
||||
}
|
||||
];
|
||||
}
|
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
# Import all your configuration modules here
|
||||
imports = [
|
||||
./buffer/bufdelete.nix
|
||||
./blink.nix
|
||||
./bufferline.nix
|
||||
./comment.nix
|
||||
|
@ -15,7 +16,6 @@
|
|||
./lsp
|
||||
./lualine.nix
|
||||
./neo-tree.nix
|
||||
# ./nvim-cmp.nix
|
||||
# ./project.nix
|
||||
./rainbow-delimiters.nix
|
||||
./telescope.nix
|
||||
|
@ -23,6 +23,5 @@
|
|||
./treesitter.nix
|
||||
./which-key.nix
|
||||
];
|
||||
|
||||
plugins.web-devicons.enable = true;
|
||||
}
|
||||
|
|
|
@ -83,14 +83,5 @@
|
|||
desc = "Next Buffer";
|
||||
};
|
||||
}
|
||||
|
||||
{
|
||||
mode = [ "n" "i" ];
|
||||
key = "<S-Tab>";
|
||||
action = "<cmd>tabprevious<cr>";
|
||||
options = {
|
||||
desc = "Previous Tab";
|
||||
};
|
||||
}
|
||||
];
|
||||
}
|
||||
|
|
|
@ -6,7 +6,10 @@
|
|||
};
|
||||
keymaps = [
|
||||
{
|
||||
mode = [ "n" "i" ];
|
||||
mode = [
|
||||
"n"
|
||||
"i"
|
||||
];
|
||||
key = "<C-p>";
|
||||
action = helpers.mkRaw ''
|
||||
function()
|
||||
|
@ -18,11 +21,14 @@
|
|||
};
|
||||
}
|
||||
{
|
||||
mode = [ "n" "i" ];
|
||||
mode = [
|
||||
"n"
|
||||
"i"
|
||||
];
|
||||
key = "<C-S-p>";
|
||||
action = helpers.mkRaw ''
|
||||
function()
|
||||
require("telescope.builtin").help_tags()
|
||||
require("telescope.builtin").live_grep()
|
||||
end
|
||||
'';
|
||||
}
|
||||
|
|
|
@ -4,7 +4,6 @@
|
|||
};
|
||||
|
||||
keymaps = [
|
||||
|
||||
{
|
||||
mode = [ "n" ];
|
||||
key = "<leader>tt";
|
||||
|
|
Loading…
Add table
Reference in a new issue