vim: add plugin 'stevearc/dressing.nvim'

This commit is contained in:
Fernando Schauenburg 2024-02-18 13:44:35 +01:00
parent 0a29953d6b
commit 335884af95

View file

@ -0,0 +1,21 @@
local M = { 'stevearc/dressing.nvim' }
M.lazy = false
M.opts = {
input = {
insert_only = false, -- <esc> changes to Normal mode
mappings = {
n = {
['<C-c>'] = 'Close',
},
i = {
['<c-k>'] = 'HistoryPrev',
['<c-j>'] = 'HistoryNext',
},
},
},
}
return M