whitespace
URL: https://github.com/johnfrankmorgan/whitespace.nvim/
Maintainers: Austin Horstman
A simple neovim plugin to highlight and remove trailing whitespace.
plugins.whitespace.enable
Whether to enable whitespace.
Type: boolean
Default:
false
Example:
true
Declared by:
plugins.whitespace.package
The whitespace package to use.
Type: package
Default:
pkgs.vimPlugins.whitespace-nvim
Declared by:
plugins.whitespace.autoLoad
Whether to automatically load whitespace when neovim starts.
Type: boolean
Default:
false when lazy-loading is enabled.
Example:
false
Declared by:
plugins.whitespace.callSetup
Whether to generate the standard require('whitespace-nvim').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.whitespace.settings
Options provided to the require('whitespace-nvim').setup function.
Type: lua value
Default:
{ }
Example:
{
ignored_filetypes = [
"Avante"
"AvanteInput"
"TelescopePrompt"
"Trouble"
"blink-cmp-documentation"
"blink-cmp-menu"
"blink-cmp-signature"
"checkhealth"
"copilot-chat"
"dashboard"
"fzf"
"help"
"ministarter"
"snacks_dashboard"
];
return_cursor = false;
}
Declared by: