fixes
This commit is contained in:
parent
e0c6d50448
commit
31fceada01
|
@ -5,10 +5,24 @@ local navigation = {
|
|||
'max397574/better-escape.nvim',
|
||||
event = 'VeryLazy',
|
||||
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,
|
||||
},
|
||||
|
||||
{
|
||||
'christoomey/vim-tmux-navigator',
|
||||
cmd = {
|
||||
|
|
Loading…
Reference in New Issue