mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-10 17:24:32 +02:00
tests/otter: add treesitter to avoid warning
This commit is contained in:
parent
bae46eafd1
commit
820f8d58ea
1 changed files with 36 additions and 27 deletions
|
@ -1,10 +1,18 @@
|
||||||
{
|
{
|
||||||
empty = {
|
empty = {
|
||||||
plugins.otter.enable = true;
|
plugins = {
|
||||||
|
otter.enable = true;
|
||||||
|
# Avoid the warning
|
||||||
|
treesitter.settings.highlight.enable = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
defaults = {
|
defaults = {
|
||||||
plugins.otter = {
|
plugins = {
|
||||||
|
# Avoid the warning
|
||||||
|
treesitter.settings.highlight.enable = true;
|
||||||
|
|
||||||
|
otter = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
|
@ -36,4 +44,5 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue