nvim(plugin): rewrite better-escape

This commit is contained in:
thek4n 2024-07-05 13:52:20 +03:00
parent ce249bebd9
commit e83913a7e3

View File

@ -103,9 +103,14 @@ return {
"max397574/better-escape.nvim", "max397574/better-escape.nvim",
config = function() config = function()
require("better_escape").setup({ require("better_escape").setup({
mapping = {'jf', 'оа'}, mappings = {
i = {
j = {
f = "<ESC>`^"
}
}
},
timeout = vim.o.timeoutlen, timeout = vim.o.timeoutlen,
keys = '<ESC>`^'
}) })
end, end,
}, },