mirror of
https://github.com/sadan4/nvim.git
synced 2025-06-10 13:53:01 -04:00
add vscode split maps and home + end on home row
This commit is contained in:
parent
0578041126
commit
eed2d26842
3 changed files with 91 additions and 9 deletions
|
@ -4,6 +4,12 @@ vim.g.mapleader = " "
|
|||
|
||||
vim.keymap.set("n", "<C-b>", "<Nop>");
|
||||
vim.keymap.set("n", "<C-f>", "<Nop>");
|
||||
-- <S-k> is mapped to hover
|
||||
-- unmap <S-j>
|
||||
vim.keymap.set({"v", "n"}, "J", "<Nop>")
|
||||
-- use <S-h> for home and <S-l> for end
|
||||
vim.keymap.set({"n", "v", "o"}, "H", "g^")
|
||||
vim.keymap.set({"n", "v", "o"}, "L", "g_")
|
||||
-- find Files
|
||||
vim.keymap.set("n", "<C-f>f", tb.find_files, {})
|
||||
-- find Text
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue