From 53ed6854e0bba64d467c58e87084dcf8b1c22d36 Mon Sep 17 00:00:00 2001 From: Tammer Saleh Date: Sun, 27 Oct 2024 15:40:58 -0700 Subject: [PATCH] Lazy.nvim should be less lazy The :Refactor command doesn't work if the plugin isn't yet loaded. Instead, load non-lazy. Alternative would be to use `cmd = 'Refactor'`, but I haven't tested that. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 022d92ad..1720497d 100644 --- a/README.md +++ b/README.md @@ -63,6 +63,7 @@ use { "nvim-lua/plenary.nvim", "nvim-treesitter/nvim-treesitter", }, + lazy = false, config = function() require("refactoring").setup() end,