mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
48 lines
954 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|