feat(plugins): secret hidding with cloak.nvim

This commit is contained in:
Guz
2025-12-10 17:54:46 -03:00
parent eaf72c703c
commit 41f3c4a603

View File

@@ -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",