fixes
This commit is contained in:
parent
e0c6d50448
commit
31fceada01
|
@ -5,10 +5,24 @@ local navigation = {
|
||||||
'max397574/better-escape.nvim',
|
'max397574/better-escape.nvim',
|
||||||
event = 'VeryLazy',
|
event = 'VeryLazy',
|
||||||
config = function()
|
config = function()
|
||||||
require('better_escape').setup()
|
require('better_escape').setup {
|
||||||
|
timeout = vim.o.timeoutlen,
|
||||||
|
default_mappings = false, -- disable default mappings
|
||||||
|
mappings = {
|
||||||
|
i = {
|
||||||
|
j = {
|
||||||
|
k = '<Esc>',
|
||||||
|
j = '<Esc>',
|
||||||
|
},
|
||||||
|
k = {
|
||||||
|
k = '<Esc>',
|
||||||
|
j = '<Esc>',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
'christoomey/vim-tmux-navigator',
|
'christoomey/vim-tmux-navigator',
|
||||||
cmd = {
|
cmd = {
|
||||||
|
|
Loading…
Reference in New Issue