From c38b5e31bd8bcb83f3ce906ac47cf5b1a6a243a3 Mon Sep 17 00:00:00 2001 From: fm39hz-workstation Date: Mon, 20 May 2024 15:46:22 +0700 Subject: [PATCH] feat: add collaborative plugin --- lua/plugins/collaborative.lua | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 lua/plugins/collaborative.lua diff --git a/lua/plugins/collaborative.lua b/lua/plugins/collaborative.lua new file mode 100644 index 0000000..c9c6708 --- /dev/null +++ b/lua/plugins/collaborative.lua @@ -0,0 +1,22 @@ +return { + { + "jbyuki/instant.nvim", + lazy = true, + cmd = { + "InstantStartServer", + "InstantStopServer", + }, + }, + { + "mistricky/codesnap.nvim", + lazy = true, + build = "make", + cmd = { + "CodeSnap", + "CodeSnapSave", + }, + opts = { + save_path = "~/Pictures/ScreenShot/", + }, + }, +}