mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 08:35:48 +02:00
add: config for database management
This commit is contained in:
parent
17f2ffe48b
commit
9dbcd4b755
9 changed files with 218 additions and 82 deletions
40
lua/custom/plugins/refactoring.lua
Normal file
40
lua/custom/plugins/refactoring.lua
Normal file
|
@ -0,0 +1,40 @@
|
|||
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 = {},
|
||||
-- },
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue