Add inc_rename
This commit is contained in:
parent
e5384de476
commit
95f32af304
2 changed files with 10 additions and 4 deletions
7
nvim/lua/plugs/inc_rename.lua
Normal file
7
nvim/lua/plugs/inc_rename.lua
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
return {
|
||||
"smjonas/inc-rename.nvim",
|
||||
opts = {},
|
||||
keys = {
|
||||
{ "<leader>r", ":IncRename " },
|
||||
},
|
||||
}
|
||||
|
|
@ -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",
|
||||
},
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue