From 5ceb8f37f93d0adacfd58e039a5a049972147f65 Mon Sep 17 00:00:00 2001 From: Michal Date: Mon, 14 Apr 2025 09:14:11 +0200 Subject: [PATCH] Add refactoring plugin --- init.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/init.lua b/init.lua index 355665bc..9da9863c 100644 --- a/init.lua +++ b/init.lua @@ -758,6 +758,16 @@ require('lazy').setup({ end, }, + { -- Refactoring (extracting/inlining methods and variables) use :Refactor + 'ThePrimeagen/refactoring.nvim', + dependencies = { + 'nvim-lua/plenary.nvim', + 'nvim-treesitter/nvim-treesitter', + }, + lazy = false, + opts = {}, + }, + { -- Autoformat 'stevearc/conform.nvim', event = { 'BufWritePre' },