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" + }, + }, +}