aboutsummaryrefslogtreecommitdiff
path: root/lua/custom-map.lua
blob: 7ca561dca653c9e3b738642c79d39a0e13f12cd7 (plain)
1
2
3
4
5
6
7
8
local keymap = vim.keymap

-- Go to the begining and end of current line in insert mode quickly
keymap.set('i', '<C-A>', '<HOME>')
keymap.set('i', '<C-E>', '<END>')

-- Delete the character to the right of the cursor
keymap.set('i', '<C-D>', '<DEL>')