diff --git a/nvim/lua/maps.lua b/nvim/lua/maps.lua index d67918b..daeb663 100644 --- a/nvim/lua/maps.lua +++ b/nvim/lua/maps.lua @@ -43,6 +43,11 @@ local opts = {nowait=true, silent = true} map('n', '\\lex', ":Lexplore\n", opts) map('n', '\\ex', ":Explore\n", opts) +-- Literal tabs with Shift-Tab + map('i', '', '\t', opts) + map('n', '', 'hx', opts) + map('n', 'gp', '`[v`]', opts) + -- Search map('n', '\\noh', ':noh\n', opts) @@ -52,10 +57,6 @@ local opts = {nowait=true, silent = true} -- Fold map('n', '<2-LeftMouse>', 'za', opts) -- Insert - -- Literal tabs with Shift-Tab - map('i', '', '\t', opts) - map('n', '', 'hx', opts) - -- Empty map('n', '', '', opts)