nix-community.nixvim/tests/test-sources/plugins/languages/otter.nix

40 lines
707 B
Nix
Raw Normal View History

2024-06-27 13:06:17 +02:00
{
empty = {
plugins.otter.enable = true;
};
defaults = {
plugins.otter = {
enable = true;
settings = {
lsp = {
hover = {
border = [
""
""
""
""
""
""
""
""
];
};
diagnostic_update_events = [ "BufWritePost" ];
};
buffers = {
set_filetype = false;
write_to_disk = false;
};
strip_wrapping_quote_characters = [
"'"
"\""
"\`"
];
handle_leading_whitespace = false;
};
};
};
}