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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
954 B
Nix
Raw Normal View History

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