nix-community.nixvim/tests/test-sources/plugins/by-name/yaml-schema-detect/default.nix

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

21 lines
344 B
Nix
Raw Normal View History

2025-05-31 12:05:48 +02:00
{
empty = {
plugins.yaml-schema-detect.enable = true;
};
default = {
plugins.yaml-schema-detect = {
enable = true;
settings = {
disable_keymaps = false;
keymaps = {
refresh = "<leader>xr";
cleanup = "<leader>xyc";
info = "<leader>xyi";
};
};
};
};
}