cloak
URL: https://github.com/laytan/cloak.nvim/
Maintainers: Gaetan Lepage
Cloak allows you to overlay *’s over defined patterns.
plugins.cloak.enable
Whether to enable cloak.
Type: boolean
Default:
false
Example:
true
Declared by:
plugins.cloak.package
The cloak package to use.
Type: package
Default:
pkgs.vimPlugins.cloak-nvim
Declared by:
plugins.cloak.autoLoad
Whether to automatically load cloak when neovim starts.
Type: boolean
Default:
false when lazy-loading is enabled.
Example:
false
Declared by:
plugins.cloak.callSetup
Whether to generate the standard require('cloak').setup(...) call for this plugin.
By default, this follows the plugin’s built-in behavior. Set this to false
to disable the generated setup call, or to true to force it even when the
plugin would only call it conditionally.
Type: null or boolean
Default:
null
Declared by:
plugins.cloak.settings
Options provided to the require('cloak').setup function.
Type: lua value
Default:
{ }
Example:
{
cloak_character = "*";
enabled = true;
highlight_group = "Comment";
patterns = [
{
cloak_pattern = "=.+";
file_pattern = [
".env*"
"wrangler.toml"
".dev.vars"
];
}
];
}
Declared by: