nvim

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit bd51bd4134d7a5620ee2033eda909fc08438db00
parent 853f4580f194d355be45a39eb6179430d00cf718
Author: andrew.laack <andrew.laack@imbue.com>
Date:   Thu, 28 Aug 2025 07:56:22 -0500

Updated keymappings to work w/ dvtm

Diffstat:
Mlua/core/keymaps.lua | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/lua/core/keymaps.lua b/lua/core/keymaps.lua @@ -142,6 +142,9 @@ vim.api.nvim_set_keymap('n', '<C-Left>', 'b', { noremap = true, silent = true }) vim.api.nvim_set_keymap('v', '<C-Left>', 'b', { noremap = true, silent = true }) vim.api.nvim_set_keymap('i', '<C-Left>', '<C-o>b', { noremap = true, silent = true }) +vim.keymap.set('i', '\27b', '<C-Left>') +vim.keymap.set('i', '\27f', '<C-Right>') + local map = vim.api.nvim_set_keymap local opts = { noremap = true, silent = true }