mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 00:25:47 +02:00
40 lines
847 B
Lua
40 lines
847 B
Lua
return {
|
|
-- Incremental rename
|
|
-- {
|
|
-- "smjonas/inc-rename.nvim",
|
|
-- cmd = "IncRename",
|
|
-- keys = {
|
|
-- {
|
|
-- "<leader>un",
|
|
-- function()
|
|
-- return ":IncRename " .. vim.fn.expand "<cword>"
|
|
-- end,
|
|
-- desc = "Incremental rename",
|
|
-- mode = "n",
|
|
-- noremap = true,
|
|
-- expr = true,
|
|
-- },
|
|
-- },
|
|
-- config = true,
|
|
-- },
|
|
--
|
|
-- -- Refactoring tool
|
|
-- {
|
|
-- "ThePrimeagen/refactoring.nvim",
|
|
-- keys = {
|
|
-- {
|
|
-- "<leader>r",
|
|
-- function()
|
|
-- require("refactoring").select_refactor {
|
|
-- show_success_message = true,
|
|
-- }
|
|
-- end,
|
|
-- mode = "v",
|
|
-- noremap = true,
|
|
-- silent = true,
|
|
-- expr = false,
|
|
-- },
|
|
-- },
|
|
-- opts = {},
|
|
-- },
|
|
}
|