mirror of
				https://github.com/NotAShelf/nvf.git
				synced 2025-11-04 04:32:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			274 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			274 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{
 | 
						|
  config,
 | 
						|
  lib,
 | 
						|
  ...
 | 
						|
}: let
 | 
						|
  inherit (lib.options) mkEnableOption;
 | 
						|
in {
 | 
						|
  options.vim.git.vim-fugitive = {
 | 
						|
    enable = mkEnableOption "vim-fugitive" // {default = config.vim.git.enable;};
 | 
						|
 | 
						|
    # TODO: sane default keybinds for vim-fugitive
 | 
						|
    # mappings = {};
 | 
						|
  };
 | 
						|
}
 |