diff --git a/lua/plugins/actions/escape.lua b/lua/plugins/actions/escape.lua index eb11925..575cd86 100644 --- a/lua/plugins/actions/escape.lua +++ b/lua/plugins/actions/escape.lua @@ -1,5 +1,11 @@ return { - "max397574/better-escape.nvim", - event = "InsertEnter", - opts = {}, + "max397574/better-escape.nvim", + event = "InsertEnter", + opts = { + default_mappings = true, + mappings = { + t = { j = { false } }, --lazygit navigation fix + v = { j = { k = false } }, -- visual select fix + }, + }, }