From a504191ee459bae39afd97468e3c3e1eb0830be6 Mon Sep 17 00:00:00 2001 From: rootiest Date: Thu, 11 Jul 2024 03:40:16 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=97=9D=EF=B8=8F=20Add=20SuEdit?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Allows detecting and prompting for sudo - When the user doesn't have permission to edit the file in buffer --- lua/plugins/suedit.lua | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 lua/plugins/suedit.lua diff --git a/lua/plugins/suedit.lua b/lua/plugins/suedit.lua new file mode 100644 index 0000000..1bb8baf --- /dev/null +++ b/lua/plugins/suedit.lua @@ -0,0 +1,8 @@ +-- ----------------------------------------------------------------------------- +-- --------------------------------- SuEdit ------------------------------------ +-- ----------------------------------------------------------------------------- + +return { + "Grafcube/suedit.nvim", + dependencies = "akinsho/toggleterm.nvim", +}