mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-24 17:58:38 +02:00
40 lines
707 B
Nix
40 lines
707 B
Nix
|
{
|
||
|
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;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|