From 53a2ce575edadb34e7dc993a07fd9b3e02d7bff4 Mon Sep 17 00:00:00 2001 From: Micah Halter Date: Fri, 12 Apr 2024 13:39:17 -0400 Subject: [PATCH] fix(nvim-sftp-sync): remove lazy loading to play nicer with `:UpdateRemotePlugins` --- .../remote-development/nvim-sftp-sync/init.lua | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/lua/astrocommunity/remote-development/nvim-sftp-sync/init.lua b/lua/astrocommunity/remote-development/nvim-sftp-sync/init.lua index da2d41eeb..b284211a0 100644 --- a/lua/astrocommunity/remote-development/nvim-sftp-sync/init.lua +++ b/lua/astrocommunity/remote-development/nvim-sftp-sync/init.lua @@ -1,12 +1,5 @@ return { "dcampos/nvim-sftp-sync", build = ":UpdateRemotePlugins", - cmd = { - "SftpDisable", - "SftpEnable", - "SftpOpenLog", - "SftpReset", - "SftpSelectServer", - "SftpSend", - }, + event = "VeryLazy", }