From 95fa3ca72c3ef6552507d988913c098f9920f6f7 Mon Sep 17 00:00:00 2001 From: kalmenn Date: Wed, 18 Jun 2025 16:04:31 +0200 Subject: [PATCH] feat: Add a plugin for sops --- lua/plugins/sops.lua | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 lua/plugins/sops.lua diff --git a/lua/plugins/sops.lua b/lua/plugins/sops.lua new file mode 100644 index 0000000..ee63986 --- /dev/null +++ b/lua/plugins/sops.lua @@ -0,0 +1,21 @@ +return { + "lemarsu/sops.nvim", + lazy = true, + keys = { + { + "st", + "Sops toggle", + desc = "Toggle sops editing for the current file" + }, + { + "sd", + "Sops decrypt", + desc = "Decrypt the current file using sops" + }, + { + "se", + "Sops encrypt", + desc = "Encrypt the current file using sops" + }, + }, +}