mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-02 21:34:33 +02:00
plugins/virt-column: init
This commit is contained in:
parent
4395556669
commit
f876a0a2e9
3 changed files with 136 additions and 0 deletions
47
tests/test-sources/plugins/ui/virt-column.nix
Normal file
47
tests/test-sources/plugins/ui/virt-column.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue