Add dressing for increname

This commit is contained in:
ViViDboarder 2023-06-13 16:08:42 -07:00
parent 17c3e9b5b7
commit 7c6369ba98
1 changed files with 10 additions and 1 deletions

View File

@ -282,7 +282,9 @@ use({
use({ use({
"smjonas/inc-rename.nvim", "smjonas/inc-rename.nvim",
config = function() config = function()
require("inc_rename").setup() require("inc_rename").setup({
input_buffer_type = "dressing",
})
end, end,
-- Only supports >=0.8.0 -- Only supports >=0.8.0
disable = vim.fn.has("nvim-0.8.0") ~= 1, disable = vim.fn.has("nvim-0.8.0") ~= 1,
@ -487,6 +489,13 @@ use({
end, end,
}) })
use({
"stevearc/dressing.nvim",
config = function()
require("dressing").setup({})
end,
})
-- Auto sync after bootstrapping on a fresh box -- Auto sync after bootstrapping on a fresh box
if packer_bootstrap ~= "" then if packer_bootstrap ~= "" then
packer.sync() packer.sync()