diff --git a/nvim/lua/plugs/inc_rename.lua b/nvim/lua/plugs/inc_rename.lua new file mode 100644 index 0000000..1df5bd6 --- /dev/null +++ b/nvim/lua/plugs/inc_rename.lua @@ -0,0 +1,7 @@ +return { + "smjonas/inc-rename.nvim", + opts = {}, + keys = { + { "r", ":IncRename " }, + }, +} diff --git a/nvim/lua/plugs/noice.lua b/nvim/lua/plugs/noice.lua index f31c47b..eefa0f6 100644 --- a/nvim/lua/plugs/noice.lua +++ b/nvim/lua/plugs/noice.lua @@ -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", + }, }