nvf/modules/utility/gestures/gesture-nvim/gesture-nvim.nix
2023-04-02 19:16:04 +03:00

12 lines
160 B
Nix

{
config,
lib,
...
}:
with lib;
with builtins; {
options.vim.gestures.gesture-nvim = {
enable = mkEnableOption "Enable gesture-nvim plugin";
};
}