Add inc_rename

This commit is contained in:
Martin Larsson 2025-05-30 14:19:09 +02:00
parent e5384de476
commit 95f32af304
2 changed files with 10 additions and 4 deletions

View file

@ -0,0 +1,7 @@
return {
"smjonas/inc-rename.nvim",
opts = {},
keys = {
{ "<leader>r", ":IncRename " },
},
}

View file

@ -16,11 +16,10 @@ return {
bottom_search = true, -- use a classic bottom cmdline for search
command_palette = false, -- position the cmdline and popupmenu together
long_message_to_split = true, -- long messages will be sent to a split
inc_rename = false, -- enables an input dialog for inc-rename.nvim
inc_rename = true, -- enables an input dialog for inc-rename.nvim
lsp_doc_border = false, -- add a border to hover docs and signature help
},
notify = {
level = "warn"
}
}
level = "warn",
},
}