diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-09-12 21:25:56 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-09-12 21:25:56 +0200 |
commit | 704beb38023084693283403d7c8d124b5e495c93 (patch) | |
tree | b3a626405967bf1955926248f3c423b0b9db8102 /.config/nvim | |
parent | a5ce2d3ea526e3b5f0684e935c5d8fc861eb507b (diff) |
nvim: Add comment
Diffstat (limited to '.config/nvim')
-rw-r--r-- | .config/nvim/lua/mango/remap.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.config/nvim/lua/mango/remap.lua b/.config/nvim/lua/mango/remap.lua index b90950e..46e2bc2 100644 --- a/.config/nvim/lua/mango/remap.lua +++ b/.config/nvim/lua/mango/remap.lua @@ -9,6 +9,8 @@ vim.g.mapleader = ' ' -- Make adjustments for my custom keyboard layout remap('nv', '€', '$') remap('nv', ')', '0') + +-- I only ever shift entire lines remap('n', '<', '<<') remap('n', '>', '>>') |