mirror of
				https://github.com/NotAShelf/nvf.git
				synced 2025-10-31 02:52:37 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			309 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			309 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {lib, ...}: let
 | |
|   inherit (lib.options) mkEnableOption;
 | |
|   inherit (lib.nvim.binds) mkMappingOption;
 | |
| in {
 | |
|   options.vim.utility.motion.hop = {
 | |
|     mappings = {
 | |
|       hop = mkMappingOption "Jump to occurrences [hop.nvim]" "<leader>h";
 | |
|     };
 | |
| 
 | |
|     enable = mkEnableOption "Hop.nvim plugin (easy motion)";
 | |
|   };
 | |
| }
 |