nvim netrw mappings

This commit is contained in:
thek4n 2024-02-05 11:09:02 +03:00
parent 1a9ae43feb
commit 6d6bc6446c

View File

@ -0,0 +1,6 @@
local map = vim.api.nvim_buf_set_keymap
map(0, 'n', "H", "u", {noremap=false})
map(0, 'n', "h", "-^", {noremap=false})
map(0, 'n', "l", "<CR>", {noremap=false})
map(0, 'n', ".", "gh", {noremap=false})