mirror of
https://github.com/marianozunino/nvim.git
synced 2025-06-28 18:43:50 -03:00
24 lines
385 B
Lua
24 lines
385 B
Lua
local M = {
|
|
"laytan/cloak.nvim",
|
|
}
|
|
|
|
M.config = function()
|
|
require("cloak").setup({
|
|
cloak_character = "*",
|
|
highlight_group = "Comment",
|
|
patterns = {
|
|
{
|
|
file_pattern = {
|
|
".env*",
|
|
"wrangler.toml",
|
|
".dev.vars",
|
|
},
|
|
cloak_pattern = "=.+",
|
|
},
|
|
},
|
|
})
|
|
|
|
nmap("<Leader>cc", ":CloakToggle<cr>")
|
|
end
|
|
|
|
return M
|