From b194e4dd4396917c67c7343612a3d1bd46301fc7 Mon Sep 17 00:00:00 2001 From: "Gustavo L de Mello (Guz)" Date: Sat, 7 Dec 2024 12:18:25 -0300 Subject: [PATCH] fix(ide): cloak not being initiated --- lua/dot013/plugins/ide.lua | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/lua/dot013/plugins/ide.lua b/lua/dot013/plugins/ide.lua index 60746e4..e26137f 100644 --- a/lua/dot013/plugins/ide.lua +++ b/lua/dot013/plugins/ide.lua @@ -104,8 +104,16 @@ return { -- Environment variables and secrets hidding { - "cloak-nvim", + "cloak.nvim", ft = { "sh" }, + cmd = { + "CloakDisable", + "CloakEnable", + "CloakToggle", + }, + after = function() + require("cloak").setup() + end, }, {