nix-community.nixvim/tests/test-sources/plugins/utils/quickmath.nix

17 lines
209 B
Nix
Raw Permalink Normal View History

2023-07-01 08:57:44 +02:00
{
empty = {
plugins.quickmath.enable = true;
};
example = {
plugins.quickmath = {
enable = true;
keymap = {
key = "<leader>q";
silent = true;
};
};
};
}