Files
Taken 9556024c93 Added types
Signed-off-by: Taken <taken@mairimashita.org>
2024-03-17 16:34:11 +01:00

23 lines
539 B
Lua

--- @type LazyPluginSpec
return {
"laytan/cloak.nvim",
config = function()
local cloak = require("cloak")
cloak.setup({
enabled = true,
cloak_character = "*",
highlight_group = "Comment",
cloak_length = nil,
try_all_patterns = true,
patterns = {
{
file_pattern = ".env*",
cloak_pattern = "=.+",
replace = nil,
},
},
})
end,
}