mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 17:03:31 +02:00
42 lines
787 B
Nix
42 lines
787 B
Nix
|
{
|
|||
|
empty = {
|
|||
|
plugins.visual-whitespace.enable = true;
|
|||
|
};
|
|||
|
|
|||
|
defaults = {
|
|||
|
plugins.visual-whitespace = {
|
|||
|
enable = true;
|
|||
|
settings = {
|
|||
|
enabled = true;
|
|||
|
highlight = {
|
|||
|
link = "Visual";
|
|||
|
default = true;
|
|||
|
};
|
|||
|
match_types = {
|
|||
|
space = true;
|
|||
|
tab = true;
|
|||
|
nbsp = true;
|
|||
|
lead = false;
|
|||
|
trail = false;
|
|||
|
};
|
|||
|
list_chars = {
|
|||
|
space = "·";
|
|||
|
tab = "↦";
|
|||
|
nbsp = "␣";
|
|||
|
lead = "‹";
|
|||
|
trail = "›";
|
|||
|
};
|
|||
|
fileformat_chars = {
|
|||
|
unix = "↲";
|
|||
|
mac = "←";
|
|||
|
dos = "↙";
|
|||
|
};
|
|||
|
ignore = {
|
|||
|
filetypes = { };
|
|||
|
buftypes = { };
|
|||
|
};
|
|||
|
};
|
|||
|
};
|
|||
|
};
|
|||
|
}
|