From f5c963316d26212f6d728a760b6670f606241b27 Mon Sep 17 00:00:00 2001 From: Jonas Hagberg Date: Thu, 18 Apr 2024 14:58:55 +0200 Subject: [PATCH] =?UTF-8?q?Bind=20=C2=A7=20to=20=20in=20insert=20mode?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- init.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/init.lua b/init.lua index 42b3380a..2339e415 100644 --- a/init.lua +++ b/init.lua @@ -194,6 +194,9 @@ vim.keymap.set('n', '', '', { desc = 'Move focus to the right win vim.keymap.set('n', '', '', { desc = 'Move focus to the lower window' }) vim.keymap.set('n', '', '', { desc = 'Move focus to the upper window' }) +-- Bind § to in insert mode +vim.keymap.set('i', '§', '') + -- [[ Basic Autocommands ]] -- See `:help lua-guide-autocommands`