Files
sunhat/configs/dotfiles/nvim/lua/plugins/cloak.lua
2025-09-13 19:18:20 -05:00

21 lines
382 B
Lua

return {
'laytan/cloak.nvim',
config = function()
require'cloak'.setup({
enabled = false,
cloak_character = "",
highlight_group = "Comment",
patterns = {
{
file_pattern = {
'.env*',
'wrangler.toml',
'.dev.vars',
},
cloak_pattern = "=.+"
},
},
})
end,
}