Files
sunhat/configs/dotfiles/nvim/lua/plugins/cloak.lua
2025-08-15 16:37:31 -05:00

19 lines
329 B
Lua

vim.pack.add({
{ src = 'https://github.com/laytan/cloak.nvim' },
})
require'cloak'.setup({
enabled = false,
cloak_character = "",
highlight_group = "Comment",
patterns = {
{
file_pattern = {
'.env*',
'wrangler.toml',
'.dev.vars',
},
cloak_pattern = "=.+"
},
},
})