12 lines
		
	
	
		
			268 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			268 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/bash
 | 
						||
 | 
						||
if (command -v mcfly &>/dev/null); then
 | 
						||
  export MCFLY_PROMPT="❯ "
 | 
						||
  export MCFLY_INTERFACE_VIEW=BOTTOM
 | 
						||
  export MCFLY_RESULTS=50
 | 
						||
  export MCFLY_RESULTS_SORT=LAST_RUN
 | 
						||
  # export MCFLY_KEY_SCHEME=vim
 | 
						||
  export MCFLY_FUZZY=3
 | 
						||
  eval "$(mcfly init bash)"
 | 
						||
fi
 |