1
0
Fork 0
mirror of https://github.com/NotAShelf/neovim-flake.git synced 2025-02-12 23:03:19 +01:00
neovim-flake/modules/utility/motion/hop/hop.nix

13 lines
206 B
Nix

{
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.vim.utility.motion.hop;
in {
options.vim.utility.motion.hop = {
enable = mkEnableOption "Enable Hop.nvim plugin (easy motion)";
};
}