From 95f32af3042c3035d3abde80fdb16ee9f37f367a Mon Sep 17 00:00:00 2001 From: Martin Larsson Date: Fri, 30 May 2025 14:19:09 +0200 Subject: [PATCH] Add inc_rename --- nvim/lua/plugs/inc_rename.lua | 7 +++++++ nvim/lua/plugs/noice.lua | 7 +++---- 2 files changed, 10 insertions(+), 4 deletions(-) create mode 100644 nvim/lua/plugs/inc_rename.lua 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", + }, }