From: Huck Boles Date: Sun, 11 Feb 2024 21:45:05 +0000 (-0800) Subject: fixed: switched h and v for consistancy X-Git-Url: https://git.huck.website/?a=commitdiff_plain;h=069e89a800be88e9b4bb6cecc7c55378ea4c2a90;p=nvim.git fixed: switched h and v for consistancy --- diff --git a/lua/huck/map.lua b/lua/huck/map.lua index ae9e946..173f444 100644 --- a/lua/huck/map.lua +++ b/lua/huck/map.lua @@ -23,9 +23,9 @@ vim.keymap.set('n', 'U', '') vim.keymap.set('n', 's', [[:%s/\<\>//gI]]) vim.keymap.set('n', 'c', ':r!') vim.keymap.set('n', 'h', ":vsplit ") -vim.keymap.set('n', 'H', ":new") +vim.keymap.set('n', 'H', ":vnew") vim.keymap.set('n', 'v', ":split ") -vim.keymap.set('n', 'V', ":vnew") +vim.keymap.set('n', 'V', ":new") vim.keymap.set('n', '-', 'setlocal spell spelllang=en_us') vim.keymap.set('n', 'w', 'set textwidth=80ggVGgq')