diff --git a/config/nvim/lua/fschauen/plugins/dressing.lua b/config/nvim/lua/fschauen/plugins/dressing.lua new file mode 100644 index 0000000..398f457 --- /dev/null +++ b/config/nvim/lua/fschauen/plugins/dressing.lua @@ -0,0 +1,21 @@ +local M = { 'stevearc/dressing.nvim' } + +M.lazy = false + +M.opts = { + input = { + insert_only = false, -- changes to Normal mode + mappings = { + n = { + [''] = 'Close', + }, + i = { + [''] = 'HistoryPrev', + [''] = 'HistoryNext', + }, + }, + }, +} + +return M +