16 lines
		
	
	
		
			329 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
		
		
			
		
	
	
			16 lines
		
	
	
		
			329 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| 
								 | 
							
								#!/bin/zsh
							 | 
						||
| 
								 | 
							
								#####################################################################
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								command -v op >/dev/null 2>&1 && {
							 | 
						||
| 
								 | 
							
									eval "$(op completion zsh)"
							 | 
						||
| 
								 | 
							
									compdef _op op
							 | 
						||
| 
								 | 
							
									export OP_FORMAT=json
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								command -v flux >/dev/null 2>&1 && {
							 | 
						||
| 
								 | 
							
									. <(flux completion zsh)
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#####################################################################
							 | 
						||
| 
								 | 
							
								true
							 |