nix-community.nixvim/tests/test-sources/plugins/languages/otter.nix
2024-08-01 08:13:36 +02:00

48 lines
954 B
Nix

{
empty = {
plugins = {
otter.enable = true;
# Avoid the warning
treesitter.settings.highlight.enable = true;
};
};
defaults = {
plugins = {
# Avoid the warning
treesitter.settings.highlight.enable = true;
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;
};
};
};
};
}