mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-23 10:48:19 +02:00
21 lines
344 B
Nix
21 lines
344 B
Nix
|
{
|
||
|
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";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|