plugins/virt-column: init

This commit is contained in:
Alison Jenkins 2024-02-22 07:55:43 +00:00 committed by Gaétan Lepage
parent 4395556669
commit f876a0a2e9
3 changed files with 136 additions and 0 deletions

View file

@ -0,0 +1,47 @@
{
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";
};
};
};
}