mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
48 lines
805 B
Nix
48 lines
805 B
Nix
{
|
|
empty = {
|
|
plugins.csvview.enable = true;
|
|
};
|
|
|
|
defaults = {
|
|
plugins.csvview = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
parser = {
|
|
async_chunksize = 50;
|
|
delimiter = {
|
|
default = ",";
|
|
ft = {
|
|
tsv = "\t";
|
|
};
|
|
};
|
|
quote_char = ''"'';
|
|
comments = [
|
|
"#"
|
|
"--"
|
|
"//"
|
|
];
|
|
};
|
|
view = {
|
|
min_column_width = 5;
|
|
spacing = 2;
|
|
display_mode = "highlight";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
example = {
|
|
plugins.csvview = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
parser.async_chunksize = 30;
|
|
view = {
|
|
spacing = 4;
|
|
display_mode = "border";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|