From 4dea13d2ba34af117974b6069dc4844af1c635f5 Mon Sep 17 00:00:00 2001 From: surdeus Date: Fri, 20 Oct 2023 12:10:21 +0300 Subject: [PATCH] Added H and L maps for neovim. --- nvim/lua/maps.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nvim/lua/maps.lua b/nvim/lua/maps.lua index fdf0749..7a5c1b9 100644 --- a/nvim/lua/maps.lua +++ b/nvim/lua/maps.lua @@ -72,6 +72,10 @@ local opts = {nowait=true, silent = true} map('n', '\\|', 'v', opts) map('n', '\\-', 's', opts) + -- Move + map('n', 'L', '$', opts) + map('n', 'H', '^', opts) + -- Netrw vim.api.nvim_create_autocmd('filetype', { pattern = 'netrw',