diff options
| author | Thomas Voss <mail@thomasvoss.com> | 2023-11-06 02:13:53 +0100 |
|---|---|---|
| committer | Thomas Voss <mail@thomasvoss.com> | 2023-11-06 02:13:53 +0100 |
| commit | 219b9bce9e76e6be5ea91543796b00499722ae16 (patch) | |
| tree | f74cf0ebd3f40d9adee88f63bfca4d1c37137796 | |
| parent | 1b5070ed91af16b83905327e56c05033eb4480da (diff) | |
nvim: Document remap
| -rw-r--r-- | .config/nvim/lua/mango/remap.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.config/nvim/lua/mango/remap.lua b/.config/nvim/lua/mango/remap.lua index 17072d7..2fb1ac5 100644 --- a/.config/nvim/lua/mango/remap.lua +++ b/.config/nvim/lua/mango/remap.lua @@ -62,6 +62,7 @@ remap('n', '–', function() vim.cmd('vsplit | Ex') end) +-- Open netrw in a horizontal split remap('n', 'g–', function() vim.cmd('split | Ex') end) |