From 41f3c4a6032250492c350e51f5f73ce0c8c136bb Mon Sep 17 00:00:00 2001 From: "Gustavo \"Guz\" L de Mello" Date: Wed, 10 Dec 2025 17:54:46 -0300 Subject: [PATCH] feat(plugins): secret hidding with cloak.nvim --- lua/dot/plugins.lua | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/lua/dot/plugins.lua b/lua/dot/plugins.lua index e066ec7..37e1059 100644 --- a/lua/dot/plugins.lua +++ b/lua/dot/plugins.lua @@ -249,6 +249,20 @@ lze.load({ event = "BufEnter", }, + -- Secrets hiding + { + "cloak.nvim", + after = function() + require("cloak").setup() + end, + cmd = { + "CloakDisable", + "CloakEnable", + "CloakToggle", + }, + ft = { "sh" }, + }, + -- Treesitter { "nvim-treesitter",