15 lines
312 B
Lua
15 lines
312 B
Lua
|
local M = {}
|
||
|
|
||
|
M.general = {
|
||
|
n = {
|
||
|
["<A-j>"] = { "10+", "Move cursor forward by 10 lines"},
|
||
|
["<A-k>"] = { "10-", "Move cursor backward by 10 lines"},
|
||
|
},
|
||
|
v = {
|
||
|
["<A-j>"] = { "10+", "Move cursor forward by 10 lines"},
|
||
|
["<A-k>"] = { "10-", "Move cursor backward by 10 lines"},
|
||
|
},
|
||
|
}
|
||
|
|
||
|
return M
|