mirror of
				https://github.com/NotAShelf/nvf.git
				synced 2025-10-31 02:52:37 +00:00 
			
		
		
		
	docs: fix mkEnableOption usage for autogenerated documentation
This commit is contained in:
		
					parent
					
						
							
								5cef662ccf
							
						
					
				
			
			
				commit
				
					
						a2b58e17af
					
				
			
		
					 55 changed files with 225 additions and 333 deletions
				
			
		|  | @ -15,23 +15,27 @@ with builtins; { | |||
|         default = "<c-t>"; | ||||
|       }; | ||||
|     }; | ||||
| 
 | ||||
|     direction = mkOption { | ||||
|       type = types.enum ["horizontal" "vertical" "tab" "float"]; | ||||
|       default = "horizontal"; | ||||
|       description = "Direction of the terminal"; | ||||
|     }; | ||||
| 
 | ||||
|     enable_winbar = mkOption { | ||||
|       type = types.bool; | ||||
|       default = false; | ||||
|       description = "Enable winbar"; | ||||
|     }; | ||||
| 
 | ||||
|     lazygit = { | ||||
|       enable = mkEnableOption "Enable LazyGit integration"; | ||||
|       enable = mkEnableOption "LazyGit integration"; | ||||
|       direction = mkOption { | ||||
|         type = types.enum ["horizontal" "vertical" "tab" "float"]; | ||||
|         default = "float"; | ||||
|         description = "Direction of the lazygit window"; | ||||
|       }; | ||||
| 
 | ||||
|       package = mkOption { | ||||
|         type = with types; nullOr package; | ||||
|         default = pkgs.lazygit; | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 NotAShelf
				NotAShelf