mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-08-01 16:44:49 +02:00
feat(keymaps): better jk
This commit is contained in:
parent
4f0287793d
commit
68242540cf
1 changed files with 4 additions and 0 deletions
|
@ -2,6 +2,10 @@
|
|||
|
||||
local util = require("lazyvim.util")
|
||||
|
||||
-- better up/down
|
||||
vim.keymap.set("n", "j", "gj")
|
||||
vim.keymap.set("n", "k", "gk")
|
||||
|
||||
-- Move to window using the <meta> movement keys
|
||||
vim.keymap.set("n", "<A-left>", "<C-w>h")
|
||||
vim.keymap.set("n", "<A-down>", "<C-w>j")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue