Add feat: Ctrl-Backspace keymap for word deletion

This commit is contained in:
KaoKsn 2026-03-14 13:30:52 +05:30
parent 58170c7ae3
commit a634371a22
1 changed files with 3 additions and 0 deletions

View File

@ -171,6 +171,9 @@ vim.o.confirm = true
-- See `:help hlsearch`
vim.keymap.set('n', '<Esc>', '<cmd>nohlsearch<CR>')
-- Delete a word on Ctrl-Backspace
vim.keymap.set('i', '<C-H>', '<C-w>')
-- Diagnostic Config & Keymaps
-- See :help vim.diagnostic.Opts
vim.diagnostic.config {