mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-26 02:38:38 +02:00
23 lines
387 B
Nix
23 lines
387 B
Nix
|
{
|
||
|
empty = {
|
||
|
plugins.whitespace.enable = true;
|
||
|
};
|
||
|
|
||
|
defaults = {
|
||
|
plugins.whitespace = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
highlight = "DiffDelete";
|
||
|
ignored_filetypes = [
|
||
|
"TelescopePrompt"
|
||
|
"Trouble"
|
||
|
"help"
|
||
|
"dashboard"
|
||
|
];
|
||
|
ignore_terminal = true;
|
||
|
return_cursor = true;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|