mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-25 18:28:37 +02:00
22 lines
387 B
Nix
22 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;
|
|
};
|
|
};
|
|
};
|
|
}
|