mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-24 17:58:38 +02:00
plugins/otter: init
This commit is contained in:
parent
d823c1463e
commit
cd479ec0ef
3 changed files with 126 additions and 0 deletions
39
tests/test-sources/plugins/languages/otter.nix
Normal file
39
tests/test-sources/plugins/languages/otter.nix
Normal file
|
@ -0,0 +1,39 @@
|
|||
{
|
||||
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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue