nix-community.nixvim/tests/test-sources/plugins/by-name/virt-column/default.nix
2024-09-09 11:50:39 +01:00

50 lines
853 B
Nix

{
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";
};
};
};
}