mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
plugins/whitespace: init module
This commit is contained in:
parent
1158bb13f2
commit
324801b226
2 changed files with 51 additions and 0 deletions
22
tests/test-sources/plugins/by-name/whitespace/default.nix
Normal file
22
tests/test-sources/plugins/by-name/whitespace/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue