mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
50 lines
853 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
}
|