vim: add plugin 'stevearc/dressing.nvim'
This commit is contained in:
parent
0a29953d6b
commit
335884af95
1 changed files with 21 additions and 0 deletions
21
config/nvim/lua/fschauen/plugins/dressing.lua
Normal file
21
config/nvim/lua/fschauen/plugins/dressing.lua
Normal 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
|
||||||
|
|
Loading…
Add table
Reference in a new issue