nix-community.nixvim/tests/test-sources/plugins/by-name/quickmath/default.nix
2024-09-09 11:50:38 +01:00

16 lines
209 B
Nix

{
empty = {
plugins.quickmath.enable = true;
};
example = {
plugins.quickmath = {
enable = true;
keymap = {
key = "<leader>q";
silent = true;
};
};
};
}