From 7c6369ba984ee4197efa6b9679dac0e0d69e5c2d Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Tue, 13 Jun 2023 16:08:42 -0700 Subject: [PATCH] Add dressing for increname --- neovim/lua/plugins.lua | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/neovim/lua/plugins.lua b/neovim/lua/plugins.lua index 0f55fdd..3ec0206 100644 --- a/neovim/lua/plugins.lua +++ b/neovim/lua/plugins.lua @@ -282,7 +282,9 @@ use({ use({ "smjonas/inc-rename.nvim", config = function() - require("inc_rename").setup() + require("inc_rename").setup({ + input_buffer_type = "dressing", + }) end, -- Only supports >=0.8.0 disable = vim.fn.has("nvim-0.8.0") ~= 1, @@ -487,6 +489,13 @@ use({ end, }) +use({ + "stevearc/dressing.nvim", + config = function() + require("dressing").setup({}) + end, +}) + -- Auto sync after bootstrapping on a fresh box if packer_bootstrap ~= "" then packer.sync()