mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 08:53:28 +02:00
41 lines
787 B
Nix
41 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 = { };
|
||
};
|
||
};
|
||
};
|
||
};
|
||
}
|