nix-community.nixvim/tests/test-sources/plugins/ui/virt-column.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

51 lines
853 B
Nix
Raw Normal View History

2024-02-22 07:55:43 +00:00
{
empty = {
plugins.virt-column.enable = true;
};
defaults = {
plugins.virt-column = {
enable = true;
settings = {
enabled = true;
char = "";
virtcolumn = "";
highlight = "NonText";
exclude = {
filetypes = [
"lspinfo"
"packer"
"checkhealth"
"help"
"man"
"TelescopePrompt"
"TelescopeResults"
];
buftypes = [
"nofile"
"quickfix"
"terminal"
"prompt"
];
};
};
};
};
example = {
plugins.virt-column = {
enable = true;
settings = {
char = [
"#"
"!"
];
virtcolumn = "80,90,100";
highlight = "NonText";
};
};
};
}