diff options
author | 2025-05-09 13:55:55 +0300 | |
---|---|---|
committer | 2025-05-09 13:55:55 +0300 | |
commit | e6594804ab4be915a4044a64e01ab1b56892b744 (patch) | |
tree | 75448dce726c7abb7d4e76d5ff7140960b287dcc /lua | |
parent | feat: add buffer- and tab-related keybinds (diff) | |
download | neovim-configuration-master.tar.gz neovim-configuration-master.tar.bz2 neovim-configuration-master.tar.lz neovim-configuration-master.tar.xz neovim-configuration-master.tar.zst neovim-configuration-master.zip |
Diffstat (limited to 'lua')
-rw-r--r-- | lua/config/options.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lua/config/options.lua b/lua/config/options.lua index 43bf110..6208be7 100644 --- a/lua/config/options.lua +++ b/lua/config/options.lua @@ -60,6 +60,9 @@ map("n", "N", "Nzzzv", { desc = "Previous Search Result" }) -- Reset search highlight on ESC map("n", "<Esc>", "<cmd>nohlsearch<CR>", { desc = "Reset search highlight" }) +-- Window related binds +map("n", "<C-w>d", "<C-w>c", { desc = "[D]elete [W]indow" }) + -- Buffer related binds map("n", "<leader>bd", "<cmd>bdelete<CR>", { desc = "[D]elete [B]uffer" }) |