local keymap = vim.keymap -- Go to the beginning and end of current line in insert mode quickly keymap.set('i', '', '') keymap.set('i', '', '') -- Go to beginning of command in command-line mode keymap.set('c', '', '') -- Delete the character to the right of the cursor keymap.set('i', '', '')