summaryrefslogtreecommitdiff
path: root/lua/config/options.lua
diff options
context:
space:
mode:
authorLibravatar Mora Unie Youer <[email protected]>2025-05-09 13:55:55 +0300
committerLibravatar Mora Unie Youer <[email protected]>2025-05-09 13:55:55 +0300
commite6594804ab4be915a4044a64e01ab1b56892b744 (patch)
tree75448dce726c7abb7d4e76d5ff7140960b287dcc /lua/config/options.lua
parentfeat: add buffer- and tab-related keybinds (diff)
downloadneovim-configuration-e6594804ab4be915a4044a64e01ab1b56892b744.tar.gz
neovim-configuration-e6594804ab4be915a4044a64e01ab1b56892b744.tar.bz2
neovim-configuration-e6594804ab4be915a4044a64e01ab1b56892b744.tar.lz
neovim-configuration-e6594804ab4be915a4044a64e01ab1b56892b744.tar.xz
neovim-configuration-e6594804ab4be915a4044a64e01ab1b56892b744.tar.zst
neovim-configuration-e6594804ab4be915a4044a64e01ab1b56892b744.zip
feat: add window-related keybindsHEADmaster
Diffstat (limited to '')
-rw-r--r--lua/config/options.lua3
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" })