diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-11-13 23:31:11 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-11-13 23:31:11 +0100 |
commit | 16212da1e72557fcc02035b0f14ad5f0fa1431a1 (patch) | |
tree | 68a1b62d64476e1f54d0fde16f26a9978f45e83b /.config/nvim/lua | |
parent | 756704c47b883e2fc7a1f7de0cce592a033551bf (diff) |
nvim: Remap ‘€’ in operator-pending mode
Diffstat (limited to '.config/nvim/lua')
-rw-r--r-- | .config/nvim/lua/mango/remap.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/nvim/lua/mango/remap.lua b/.config/nvim/lua/mango/remap.lua index a5b42b0..dadb5c0 100644 --- a/.config/nvim/lua/mango/remap.lua +++ b/.config/nvim/lua/mango/remap.lua @@ -4,7 +4,7 @@ local remap = lib.remap vim.g.mapleader = ' ' -- Make adjustments for my custom keyboard layout -remap('nv', '€', '$') +remap('nov', '€', '$') -- Better frame navigation remap('n', '<C-h>', '<C-w>h') |